pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.loan</groupId>
  12. <artifactId>system</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>system</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <!-- 1.8-->
  18. <java.version>8</java.version>
  19. <org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
  20. <org.lombok.version>1.18.20</org.lombok.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>javax.annotation</groupId>
  25. <artifactId>jsr250-api</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-cache</artifactId>
  31. <version>2.7.3</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mybatis.spring.boot</groupId>
  35. <artifactId>mybatis-spring-boot-starter</artifactId>
  36. <version>2.0.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-jpa</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-security</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.hutool</groupId>
  52. <artifactId>hutool-all</artifactId>
  53. <version>5.8.11</version>
  54. </dependency>
  55. <!-- Apache POI 最新稳定版 -->
  56. <dependency>
  57. <groupId>org.apache.poi</groupId>
  58. <artifactId>poi</artifactId>
  59. <version>3.16</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.poi</groupId>
  63. <artifactId>poi-ooxml</artifactId>
  64. <version>3.16</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.httpcomponents</groupId>
  68. <artifactId>httpclient</artifactId>
  69. <version>4.5.13</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <version>${org.lombok.version}</version>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. <exclusions>
  82. <exclusion>
  83. <groupId>org.junit.vintage</groupId>
  84. <artifactId>junit-vintage-engine</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-aspects</artifactId>
  91. <version>5.3.23</version>
  92. <!-- <scope>test</scope>-->
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.security</groupId>
  96. <artifactId>spring-security-test</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>mysql</groupId>
  101. <artifactId>mysql-connector-java</artifactId>
  102. <scope>compile</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>junit</groupId>
  106. <artifactId>junit</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.alibaba</groupId>
  110. <artifactId>fastjson</artifactId>
  111. <version>1.2.62</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>io.jsonwebtoken</groupId>
  115. <artifactId>jjwt</artifactId>
  116. <version>0.9.1</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.mapstruct</groupId>
  120. <artifactId>mapstruct</artifactId>
  121. <version>${org.mapstruct.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>javax.servlet</groupId>
  125. <artifactId>servlet-api</artifactId>
  126. <version>2.5</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-fileupload</groupId>
  130. <artifactId>commons-fileupload</artifactId>
  131. <version>1.3.3</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.commons</groupId>
  135. <artifactId>commons-lang3</artifactId>
  136. <version>3.10</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-io</groupId>
  140. <artifactId>commons-io</artifactId>
  141. <version>2.4</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>net.coobird</groupId>
  145. <artifactId>thumbnailator</artifactId>
  146. <version>0.4.12</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-aop</artifactId>
  151. </dependency>
  152. <!--集成redis-->
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter-redis</artifactId>
  156. <version>1.4.1.RELEASE</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.fasterxml.jackson.core</groupId>
  160. <artifactId>jackson-databind</artifactId>
  161. </dependency>
  162. <!-- 操作 Excel2007以后 -->
  163. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  164. <!-- <dependency>-->
  165. <!-- <groupId>org.apache.poi</groupId>-->
  166. <!-- <artifactId>poi-ooxml</artifactId>-->
  167. <!-- <version>4.1.0</version>-->
  168. <!-- </dependency>-->
  169. <!-- 操作 Excel2003-->
  170. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  171. <!-- <dependency>-->
  172. <!-- <groupId>org.apache.poi</groupId>-->
  173. <!-- <artifactId>poi</artifactId>-->
  174. <!-- <version>4.1.0</version>-->
  175. <!-- </dependency>-->
  176. <!-- 生成 WORD 文档所需, 说明文档网址为:http://deepoove.com/poi-tl/-->
  177. <dependency>
  178. <groupId>com.deepoove</groupId>
  179. <artifactId>poi-tl</artifactId>
  180. <version>1.9.1</version>
  181. </dependency>
  182. <!-- WechatUtils 需要-->
  183. <!-- https://mvnrepository.com/artifact/org.codehaus.xfire/xfire-all -->
  184. <dependency>
  185. <groupId>org.codehaus.xfire</groupId>
  186. <artifactId>xfire-all</artifactId>
  187. <version>1.2.5</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-starter-mail</artifactId>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.github.xiaoymin</groupId>
  195. <artifactId>knife4j-spring-boot-starter</artifactId>
  196. <version>3.0.2</version>
  197. </dependency>
  198. <!-- swagger -->
  199. <!-- <dependency>-->
  200. <!-- <groupId>io.springfox</groupId>-->
  201. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  202. <!-- <version>2.9.2</version>-->
  203. <!-- </dependency>-->
  204. <!-- <dependency>-->
  205. <!-- <groupId>io.springfox</groupId>-->
  206. <!-- <artifactId>springfox-swagger2</artifactId>-->
  207. <!-- <version>2.9.2</version>-->
  208. <!-- </dependency>-->
  209. <!-- &lt;!&ndash; 解决 Illegal DefaultValue null for parameter type integer 异常 &ndash;&gt;-->
  210. <!-- <dependency>-->
  211. <!-- <groupId>io.swagger</groupId>-->
  212. <!-- <artifactId>swagger-annotations</artifactId>-->
  213. <!-- <version>1.5.21</version>-->
  214. <!-- </dependency>-->
  215. <!-- <dependency>-->
  216. <!-- <groupId>io.swagger</groupId>-->
  217. <!-- <artifactId>swagger-models</artifactId>-->
  218. <!-- <version>1.5.21</version>-->
  219. <!-- </dependency>-->
  220. <dependency>
  221. <groupId>org.mybatis</groupId>
  222. <artifactId>mybatis</artifactId>
  223. <version>3.5.10</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.github.pagehelper</groupId>
  227. <artifactId>pagehelper</artifactId>
  228. <version>5.2.1</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.mybatis</groupId>
  232. <artifactId>mybatis-spring</artifactId>
  233. <version>2.0.7</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>javax.activation</groupId>
  237. <artifactId>activation</artifactId>
  238. <version>1.1.1</version>
  239. </dependency>
  240. <!-- https://mvnrepository.com/artifact/javax.activation/activation -->
  241. <!-- <dependency>-->
  242. <!-- <groupId>javax.activation</groupId>-->
  243. <!-- <artifactId>activation</artifactId>-->
  244. <!-- <version>1.0.2</version>-->
  245. <!-- </dependency>-->
  246. </dependencies>
  247. <build>
  248. <plugins>
  249. <plugin>
  250. <groupId>org.springframework.boot</groupId>
  251. <artifactId>spring-boot-maven-plugin</artifactId>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.mybatis.generator</groupId>
  255. <artifactId>mybatis-generator-maven-plugin</artifactId>
  256. <version>1.3.6</version>
  257. <configuration>
  258. <configurationFile>GeneratorMapper.xml</configurationFile>
  259. <verbose>true</verbose>
  260. <overwrite>true</overwrite>
  261. </configuration>
  262. </plugin>
  263. <plugin>
  264. <groupId>org.apache.maven.plugins</groupId>
  265. <artifactId>maven-compiler-plugin</artifactId>
  266. <version>3.8.1</version>
  267. <configuration>
  268. <annotationProcessorPaths>
  269. <path>
  270. <groupId>org.mapstruct</groupId>
  271. <artifactId>mapstruct-processor</artifactId>
  272. <version>${org.mapstruct.version}</version>
  273. </path>
  274. <path>
  275. <groupId>org.projectlombok</groupId>
  276. <artifactId>lombok</artifactId>
  277. <version>${org.lombok.version}</version>
  278. </path>
  279. </annotationProcessorPaths>
  280. </configuration>
  281. </plugin>
  282. </plugins>
  283. </build>
  284. </project>