pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.15.RELEASE</version>
  10. <relativePath /> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.example.nngkxxdp</groupId>
  13. <artifactId>nngkxxdp</artifactId>
  14. <version>0.0.1</version>
  15. <name>nngkxxdp</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8
  21. </project.reporting.outputEncoding>
  22. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  23. <mybatis-spring-boot-starter>1.3.2</mybatis-spring-boot-starter>
  24. <cn-hutool.version>5.5.2</cn-hutool.version>
  25. <alibaba-fastjson.version>1.2.47</alibaba-fastjson.version>
  26. <kotlin.version>1.0.0</kotlin.version>
  27. </properties>
  28. <dependencies>
  29. <!-- idea 自动刷新静态文件 -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-devtools</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-tomcat</artifactId>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-freemarker</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.auth0</groupId>
  54. <artifactId>java-jwt</artifactId>
  55. <version>3.8.2</version>
  56. </dependency>
  57. <!-- Spring Boot Mybatis 依赖 -->
  58. <dependency>
  59. <groupId>org.mybatis.spring.boot</groupId>
  60. <artifactId>mybatis-spring-boot-starter</artifactId>
  61. <version>${mybatis-spring-boot-starter}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>mysql</groupId>
  65. <artifactId>mysql-connector-java</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.hutool</groupId>
  69. <artifactId>hutool-all</artifactId>
  70. <version>${cn-hutool.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>fastjson</artifactId>
  75. <version>${alibaba-fastjson.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-pool2</artifactId>
  80. </dependency>
  81. <!-- poi相关 -->
  82. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  83. <dependency>
  84. <groupId>org.apache.poi</groupId>
  85. <artifactId>poi</artifactId>
  86. <version>3.15</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.poi</groupId>
  90. <artifactId>poi-ooxml</artifactId>
  91. <version>3.15</version>
  92. </dependency>
  93. <!--财政局缴费接口 -->
  94. <dependency>
  95. <groupId>commons-codec</groupId>
  96. <artifactId>commons-codec</artifactId>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-core -->
  99. <dependency>
  100. <groupId>org.apache.shiro</groupId>
  101. <artifactId>shiro-core</artifactId>
  102. <version>1.4.2</version>
  103. </dependency>
  104. <!-- shiro-spring -->
  105. <dependency>
  106. <groupId>org.apache.shiro</groupId>
  107. <artifactId>shiro-spring</artifactId>
  108. <version>1.4.2</version>
  109. </dependency>
  110. <!-- 自定义切面日志相关 -->
  111. <dependency>
  112. <groupId>org.aspectj</groupId>
  113. <artifactId>aspectjrt</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.aspectj</groupId>
  117. <artifactId>aspectjtools</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.aspectj</groupId>
  121. <artifactId>aspectjweaver</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.assertj</groupId>
  125. <artifactId>assertj-core</artifactId>
  126. </dependency>
  127. <!-- https://mvnrepository.com/artifact/ws.schild/jave-core -->
  128. <dependency>
  129. <groupId>ws.schild</groupId>
  130. <artifactId>jave-core</artifactId>
  131. <version>2.7.3</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>ws.schild</groupId>
  135. <artifactId>jave-nativebin-linux64</artifactId>
  136. <version>2.7.3</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>ws.schild</groupId>
  140. <artifactId>jave-nativebin-win64</artifactId>
  141. <version>2.7.3</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>ws.schild</groupId>
  145. <artifactId>jave-nativebin-win32</artifactId>
  146. <version>2.7.3</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.projectlombok</groupId>
  150. <artifactId>lombok</artifactId>
  151. <version>1.18.12</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.elasticsearch</groupId>
  155. <artifactId>elasticsearch</artifactId>
  156. </dependency>
  157. <!-- Java High Level REST Client -->
  158. <dependency>
  159. <groupId>org.elasticsearch.client</groupId>
  160. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.google.zxing</groupId>
  164. <artifactId>core</artifactId>
  165. <version>3.3.3</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.jsoup</groupId>
  169. <artifactId>jsoup</artifactId>
  170. <version>1.12.1</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.jetbrains.kotlin</groupId>
  174. <artifactId>kotlin-stdlib</artifactId>
  175. <version>${kotlin.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.jetbrains.kotlin</groupId>
  179. <artifactId>kotlin-test</artifactId>
  180. <version>${kotlin.version}</version>
  181. <scope>test</scope>
  182. </dependency>
  183. </dependencies>
  184. <build>
  185. <finalName>nngkxxdp</finalName>
  186. <plugins>
  187. <plugin>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-maven-plugin</artifactId>
  190. </plugin>
  191. <plugin>
  192. <groupId>org.jetbrains.kotlin</groupId>
  193. <artifactId>kotlin-maven-plugin</artifactId>
  194. <version>${kotlin.version}</version>
  195. <executions>
  196. <execution>
  197. <id>compile</id>
  198. <phase>compile</phase>
  199. <goals>
  200. <goal>compile</goal>
  201. </goals>
  202. </execution>
  203. <execution>
  204. <id>test-compile</id>
  205. <phase>test-compile</phase>
  206. <goals>
  207. <goal>test-compile</goal>
  208. </goals>
  209. </execution>
  210. </executions>
  211. </plugin>
  212. <plugin>
  213. <groupId>org.apache.maven.plugins</groupId>
  214. <artifactId>maven-compiler-plugin</artifactId>
  215. <executions>
  216. <execution>
  217. <id>compile</id>
  218. <phase>compile</phase>
  219. <goals>
  220. <goal>compile</goal>
  221. </goals>
  222. </execution>
  223. <execution>
  224. <id>testCompile</id>
  225. <phase>test-compile</phase>
  226. <goals>
  227. <goal>testCompile</goal>
  228. </goals>
  229. </execution>
  230. </executions>
  231. </plugin>
  232. </plugins>
  233. </build>
  234. <packaging>jar</packaging>
  235. </project>