pom.xml 10 KB

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