pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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. <dependency>
  56. <groupId>com.squareup.okhttp3</groupId>
  57. <artifactId>okhttp</artifactId>
  58. <version>4.10.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.json</groupId>
  62. <artifactId>json</artifactId>
  63. <version>20231013</version> <!-- 使用最新版本 -->
  64. </dependency>
  65. <!-- Apache POI 最新稳定版 -->
  66. <!-- <dependency>-->
  67. <!-- <groupId>org.apache.poi</groupId>-->
  68. <!-- <artifactId>poi</artifactId>-->
  69. <!-- <version>3.16</version>-->
  70. <!-- </dependency>-->
  71. <!-- <dependency>-->
  72. <!-- <groupId>org.apache.poi</groupId>-->
  73. <!-- <artifactId>poi-ooxml</artifactId>-->
  74. <!-- <version>3.16</version>-->
  75. <!-- </dependency>-->
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. <version>4.5.13</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <version>${org.lombok.version}</version>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-test</artifactId>
  90. <scope>test</scope>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>org.junit.vintage</groupId>
  94. <artifactId>junit-vintage-engine</artifactId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-aspects</artifactId>
  101. <version>5.3.23</version>
  102. <!-- <scope>test</scope>-->
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.security</groupId>
  106. <artifactId>spring-security-test</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>mysql</groupId>
  111. <artifactId>mysql-connector-java</artifactId>
  112. <scope>compile</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>junit</groupId>
  116. <artifactId>junit</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.alibaba</groupId>
  120. <artifactId>fastjson</artifactId>
  121. <version>1.2.62</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.jsonwebtoken</groupId>
  125. <artifactId>jjwt</artifactId>
  126. <version>0.9.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.mapstruct</groupId>
  130. <artifactId>mapstruct</artifactId>
  131. <version>${org.mapstruct.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>javax.servlet</groupId>
  135. <artifactId>servlet-api</artifactId>
  136. <version>2.5</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-fileupload</groupId>
  140. <artifactId>commons-fileupload</artifactId>
  141. <version>1.3.3</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.commons</groupId>
  145. <artifactId>commons-lang3</artifactId>
  146. <version>3.10</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-io</groupId>
  150. <artifactId>commons-io</artifactId>
  151. <version>2.4</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>net.coobird</groupId>
  155. <artifactId>thumbnailator</artifactId>
  156. <version>0.4.12</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-starter-aop</artifactId>
  161. </dependency>
  162. <!--集成redis-->
  163. <dependency>
  164. <groupId>org.springframework.boot</groupId>
  165. <artifactId>spring-boot-starter-redis</artifactId>
  166. <version>1.4.1.RELEASE</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.fasterxml.jackson.core</groupId>
  170. <artifactId>jackson-databind</artifactId>
  171. </dependency>
  172. <!-- 操作 Excel2007以后 -->
  173. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  174. <!-- <dependency>-->
  175. <!-- <groupId>org.apache.poi</groupId>-->
  176. <!-- <artifactId>poi-ooxml</artifactId>-->
  177. <!-- <version>4.1.0</version>-->
  178. <!-- </dependency>-->
  179. <!-- 操作 Excel2003-->
  180. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  181. <!-- <dependency>-->
  182. <!-- <groupId>org.apache.poi</groupId>-->
  183. <!-- <artifactId>poi</artifactId>-->
  184. <!-- <version>4.1.0</version>-->
  185. <!-- </dependency>-->
  186. <!-- 生成 WORD 文档所需, 说明文档网址为:http://deepoove.com/poi-tl/-->
  187. <dependency>
  188. <groupId>com.deepoove</groupId>
  189. <artifactId>poi-tl</artifactId>
  190. <version>1.9.1</version>
  191. </dependency>
  192. <!-- WechatUtils 需要-->
  193. <!-- https://mvnrepository.com/artifact/org.codehaus.xfire/xfire-all -->
  194. <dependency>
  195. <groupId>org.codehaus.xfire</groupId>
  196. <artifactId>xfire-all</artifactId>
  197. <version>1.2.5</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-starter-mail</artifactId>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.github.xiaoymin</groupId>
  205. <artifactId>knife4j-spring-boot-starter</artifactId>
  206. <version>3.0.2</version>
  207. </dependency>
  208. <!-- swagger -->
  209. <!-- <dependency>-->
  210. <!-- <groupId>io.springfox</groupId>-->
  211. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  212. <!-- <version>2.9.2</version>-->
  213. <!-- </dependency>-->
  214. <!-- <dependency>-->
  215. <!-- <groupId>io.springfox</groupId>-->
  216. <!-- <artifactId>springfox-swagger2</artifactId>-->
  217. <!-- <version>2.9.2</version>-->
  218. <!-- </dependency>-->
  219. <!-- &lt;!&ndash; 解决 Illegal DefaultValue null for parameter type integer 异常 &ndash;&gt;-->
  220. <!-- <dependency>-->
  221. <!-- <groupId>io.swagger</groupId>-->
  222. <!-- <artifactId>swagger-annotations</artifactId>-->
  223. <!-- <version>1.5.21</version>-->
  224. <!-- </dependency>-->
  225. <!-- <dependency>-->
  226. <!-- <groupId>io.swagger</groupId>-->
  227. <!-- <artifactId>swagger-models</artifactId>-->
  228. <!-- <version>1.5.21</version>-->
  229. <!-- </dependency>-->
  230. <dependency>
  231. <groupId>org.mybatis</groupId>
  232. <artifactId>mybatis</artifactId>
  233. <version>3.5.10</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.github.pagehelper</groupId>
  237. <artifactId>pagehelper</artifactId>
  238. <version>5.2.1</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.mybatis</groupId>
  242. <artifactId>mybatis-spring</artifactId>
  243. <version>2.0.7</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>javax.activation</groupId>
  247. <artifactId>activation</artifactId>
  248. <version>1.1.1</version>
  249. </dependency>
  250. <!-- https://mvnrepository.com/artifact/javax.activation/activation -->
  251. <!-- <dependency>-->
  252. <!-- <groupId>javax.activation</groupId>-->
  253. <!-- <artifactId>activation</artifactId>-->
  254. <!-- <version>1.0.2</version>-->
  255. <!-- </dependency>-->
  256. </dependencies>
  257. <build>
  258. <plugins>
  259. <plugin>
  260. <groupId>org.springframework.boot</groupId>
  261. <artifactId>spring-boot-maven-plugin</artifactId>
  262. </plugin>
  263. <plugin>
  264. <groupId>org.mybatis.generator</groupId>
  265. <artifactId>mybatis-generator-maven-plugin</artifactId>
  266. <version>1.3.6</version>
  267. <configuration>
  268. <configurationFile>GeneratorMapper.xml</configurationFile>
  269. <verbose>true</verbose>
  270. <overwrite>true</overwrite>
  271. </configuration>
  272. </plugin>
  273. <plugin>
  274. <groupId>org.apache.maven.plugins</groupId>
  275. <artifactId>maven-compiler-plugin</artifactId>
  276. <version>3.8.1</version>
  277. <configuration>
  278. <annotationProcessorPaths>
  279. <path>
  280. <groupId>org.mapstruct</groupId>
  281. <artifactId>mapstruct-processor</artifactId>
  282. <version>${org.mapstruct.version}</version>
  283. </path>
  284. <path>
  285. <groupId>org.projectlombok</groupId>
  286. <artifactId>lombok</artifactId>
  287. <version>${org.lombok.version}</version>
  288. </path>
  289. </annotationProcessorPaths>
  290. </configuration>
  291. </plugin>
  292. </plugins>
  293. </build>
  294. </project>