pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  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. <groupId>com.fdkk</groupId>
  6. <artifactId>changeing</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>pom</packaging>
  9. <name>changeing</name>
  10. <description>sxz</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.4.5</version>
  15. <relativePath/>
  16. </parent>
  17. <modules>
  18. <module>sxz-application</module>
  19. <module>sxz-base</module>
  20. <module>sxz-common</module>
  21. <module>sxz-modules</module>
  22. <module>sxz-core</module>
  23. </modules>
  24. <properties>
  25. <java.version>1.8</java.version>
  26. <spring-boot.version>2.4.5</spring-boot.version>
  27. <swagger.version>2.9.2</swagger.version>
  28. <maven-surefire-plugin.version> 2.22.0</maven-surefire-plugin.version>
  29. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  30. </properties>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter</artifactId>
  36. <version>${spring-boot.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  41. <version>${spring-boot.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-autoconfigure</artifactId>
  46. <version>${spring-boot.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <version>${spring-boot.version}</version>
  52. <scope>test</scope>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.junit.vintage</groupId>
  56. <artifactId>junit-vintage-engine</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web</artifactId>
  63. <version>${spring-boot.version}</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-tomcat</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <!--rabbitmq-->
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-amqp</artifactId>
  75. <version>${spring-boot.version}</version>
  76. </dependency>
  77. <!-- swagger -->
  78. <dependency>
  79. <groupId>io.springfox</groupId>
  80. <artifactId>springfox-swagger2</artifactId>
  81. <version>${swagger.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.springfox</groupId>
  85. <artifactId>springfox-swagger-ui</artifactId>
  86. <version>${swagger.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.swagger</groupId>
  90. <artifactId>swagger-annotations</artifactId>
  91. <version>1.5.22</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.swagger</groupId>
  95. <artifactId>swagger-models</artifactId>
  96. <version>1.5.22</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.hibernate.validator</groupId>
  100. <artifactId>hibernate-validator</artifactId>
  101. <version>6.0.17.Final</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-tomcat</artifactId>
  106. <version>${spring-boot.version}</version>
  107. <scope>provided</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.baomidou</groupId>
  111. <artifactId>mybatis-plus-boot-starter</artifactId>
  112. <version>3.4.3.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.h2database</groupId>
  116. <artifactId>h2</artifactId>
  117. <version>1.4.200</version>
  118. <scope>runtime</scope>
  119. </dependency>
  120. <!-- 代码生成器 依赖 -->
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-freemarker</artifactId>
  124. <version>${spring-boot.version}</version>
  125. </dependency>
  126. <!-- pagehelper 依赖 -->
  127. <dependency>
  128. <groupId>com.github.pagehelper</groupId>
  129. <artifactId>pagehelper-spring-boot-starter</artifactId>
  130. <version>1.3.1</version>
  131. </dependency>
  132. <!-- -->
  133. <dependency>
  134. <groupId>com.github.jsqlparser</groupId>
  135. <artifactId>jsqlparser</artifactId>
  136. <version>2.1</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.aspectj</groupId>
  140. <artifactId>aspectjweaver</artifactId>
  141. <version>1.9.3</version>
  142. </dependency>
  143. <!-- mysql -->
  144. <dependency>
  145. <groupId>mysql</groupId>
  146. <artifactId>mysql-connector-java</artifactId>
  147. <version>8.0.15</version>
  148. <scope>runtime</scope>
  149. </dependency>
  150. <!-- druid -->
  151. <dependency>
  152. <groupId>com.alibaba</groupId>
  153. <artifactId>druid</artifactId>
  154. <version>1.0.28</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.projectlombok</groupId>
  158. <artifactId>lombok</artifactId>
  159. <version>1.18.20</version>
  160. </dependency>
  161. <!-- fastjson -->
  162. <dependency>
  163. <groupId>com.alibaba</groupId>
  164. <artifactId>fastjson</artifactId>
  165. <version>1.2.67</version>
  166. </dependency>
  167. <!--Jackson required包-->
  168. <dependency>
  169. <groupId>com.fasterxml.jackson.core</groupId>
  170. <artifactId>jackson-core</artifactId>
  171. <version>2.12.4</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.fasterxml.jackson.core</groupId>
  175. <artifactId>jackson-databind</artifactId>
  176. <version>2.12.4</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.fasterxml.jackson.core</groupId>
  180. <artifactId>jackson-annotations</artifactId>
  181. <version>2.12.4</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.google.protobuf</groupId>
  185. <artifactId>protobuf-java</artifactId>
  186. <version>3.2.0</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>com.googlecode.protobuf-java-format</groupId>
  190. <artifactId>protobuf-java-format</artifactId>
  191. <version>1.4</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.codehaus.jackson</groupId>
  195. <artifactId>jackson-mapper-asl</artifactId>
  196. <version>1.9.11</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.codehaus.jackson</groupId>
  200. <artifactId>jackson-smile</artifactId>
  201. <version>1.9.12</version>
  202. </dependency>
  203. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-ossadmin -->
  204. <dependency>
  205. <groupId>com.aliyun</groupId>
  206. <artifactId>aliyun-java-sdk-ossadmin</artifactId>
  207. <version>2.0.0</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.aliyun.oss</groupId>
  211. <artifactId>aliyun-sdk-oss</artifactId>
  212. <version>2.8.3</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.apache.httpcomponents</groupId>
  216. <artifactId>httpclient</artifactId>
  217. <version>4.5.3</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.apache.httpcomponents</groupId>
  221. <artifactId>httpmime</artifactId>
  222. <version>4.5.3</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.github.xiaoymin</groupId>
  226. <artifactId>knife4j-spring-boot-starter</artifactId>
  227. <version>2.0.3</version>
  228. </dependency>
  229. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  230. <dependency>
  231. <groupId>com.squareup.okhttp3</groupId>
  232. <artifactId>okhttp</artifactId>
  233. <version>4.0.0</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.ant</groupId>
  237. <artifactId>ant</artifactId>
  238. <version>1.8.2</version>
  239. </dependency>
  240. <!-- 解压rar -->
  241. <dependency>
  242. <groupId>com.github.junrar</groupId>
  243. <artifactId>junrar</artifactId>
  244. <version>3.0.0</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.apache.poi</groupId>
  248. <artifactId>poi-ooxml</artifactId>
  249. <version>3.8</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>net.sf.json-lib</groupId>
  253. <artifactId>json-lib</artifactId>
  254. <version>2.4</version>
  255. <classifier>jdk15</classifier>
  256. </dependency>
  257. <dependency>
  258. <groupId>cn.hutool</groupId>
  259. <artifactId>hutool-all</artifactId>
  260. <version>5.7.7</version>
  261. </dependency>
  262. <!--lettuce-->
  263. <!--redis 相关 依赖-->
  264. <dependency>
  265. <groupId>org.springframework.boot</groupId>
  266. <artifactId>spring-boot-starter-data-redis</artifactId>
  267. <version>${spring-boot.version}</version>
  268. </dependency>
  269. <!-- lettuce pool 缓存连接池 -->
  270. <dependency>
  271. <groupId>org.apache.commons</groupId>
  272. <artifactId>commons-pool2</artifactId>
  273. <version>2.4.2</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>junit</groupId>
  277. <artifactId>junit</artifactId>
  278. <version>4.12</version>
  279. <scope>test</scope>
  280. </dependency>
  281. <dependency>
  282. <groupId>com.github.t3hnar</groupId>
  283. <artifactId>scala-bcrypt_2.10</artifactId>
  284. <version>2.3</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.apache.shiro</groupId>
  288. <artifactId>shiro-spring</artifactId>
  289. <version>1.4.0</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>com.auth0</groupId>
  293. <artifactId>java-jwt</artifactId>
  294. <version>3.7.0</version>
  295. </dependency>
  296. <!-- j2cache -->
  297. <!-- 钉钉告警 -->
  298. <!-- <dependency>-->
  299. <!-- <groupId>com.aliyun</groupId>-->
  300. <!-- <artifactId>alibaba-dingtalk-service-sdk</artifactId>-->
  301. <!-- <version>1.0.1</version>-->
  302. <!-- </dependency>-->
  303. </dependencies>
  304. </dependencyManagement>
  305. <build>
  306. <plugins>
  307. <plugin>
  308. <groupId>org.apache.maven.plugins</groupId>
  309. <artifactId>maven-compiler-plugin</artifactId>
  310. <version>3.1</version>
  311. <configuration>
  312. <source>${java.version}</source>
  313. <target>${java.version}</target>
  314. </configuration>
  315. </plugin>
  316. <plugin>
  317. <groupId>org.apache.maven.plugins</groupId>
  318. <artifactId>maven-surefire-plugin</artifactId>
  319. <version>${maven-surefire-plugin.version}</version>
  320. <configuration>
  321. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  322. </configuration>
  323. </plugin>
  324. </plugins>
  325. </build>
  326. </project>