pom.xml 12 KB

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