pom.xml 11 KB

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