pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  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. <!--排除这个log4j-to-slf4j-->
  38. </dependency>
  39. <!--全局排除spring-boot-starter-logging内的所有依赖-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-logging</artifactId>
  43. <version>${spring-boot.version}</version>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.apache.logging.log4j</groupId>
  47. <artifactId>log4j-to-slf4j</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  54. <version>${spring-boot.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-autoconfigure</artifactId>
  59. <version>${spring-boot.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <version>${spring-boot.version}</version>
  65. <scope>test</scope>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>org.junit.vintage</groupId>
  69. <artifactId>junit-vintage-engine</artifactId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-web</artifactId>
  76. <version>${spring-boot.version}</version>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-tomcat</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.session</groupId>
  86. <artifactId>spring-session-core</artifactId>
  87. <version>${spring-boot.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.session</groupId>
  91. <artifactId>spring-session-data-redis</artifactId>
  92. <version>${spring-boot.version}</version>
  93. </dependency>
  94. <!--rabbitmq-->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-amqp</artifactId>
  98. <version>${spring-boot.version}</version>
  99. </dependency>
  100. <!-- swagger -->
  101. <dependency>
  102. <groupId>io.springfox</groupId>
  103. <artifactId>springfox-swagger2</artifactId>
  104. <version>${swagger.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>io.springfox</groupId>
  108. <artifactId>springfox-swagger-ui</artifactId>
  109. <version>${swagger.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>io.swagger</groupId>
  113. <artifactId>swagger-annotations</artifactId>
  114. <version>1.5.22</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>io.swagger</groupId>
  118. <artifactId>swagger-models</artifactId>
  119. <version>1.5.22</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.hibernate.validator</groupId>
  123. <artifactId>hibernate-validator</artifactId>
  124. <version>6.0.17.Final</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-tomcat</artifactId>
  129. <version>${spring-boot.version}</version>
  130. <scope>provided</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.baomidou</groupId>
  134. <artifactId>mybatis-plus-boot-starter</artifactId>
  135. <version>3.4.3.4</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.h2database</groupId>
  139. <artifactId>h2</artifactId>
  140. <version>1.4.200</version>
  141. <scope>runtime</scope>
  142. </dependency>
  143. <!-- 代码生成器 依赖 -->
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-freemarker</artifactId>
  147. <version>${spring-boot.version}</version>
  148. </dependency>
  149. <!-- pagehelper 依赖 -->
  150. <dependency>
  151. <groupId>com.github.pagehelper</groupId>
  152. <artifactId>pagehelper-spring-boot-starter</artifactId>
  153. <version>1.4.0</version>
  154. </dependency>
  155. <!-- -->
  156. <dependency>
  157. <groupId>com.github.jsqlparser</groupId>
  158. <artifactId>jsqlparser</artifactId>
  159. <version>4.2</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.aspectj</groupId>
  163. <artifactId>aspectjweaver</artifactId>
  164. <version>1.9.3</version>
  165. </dependency>
  166. <!-- mysql -->
  167. <dependency>
  168. <groupId>mysql</groupId>
  169. <artifactId>mysql-connector-java</artifactId>
  170. <version>8.0.15</version>
  171. <scope>runtime</scope>
  172. </dependency>
  173. <!-- druid -->
  174. <dependency>
  175. <groupId>com.alibaba</groupId>
  176. <artifactId>druid</artifactId>
  177. <version>1.0.28</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.projectlombok</groupId>
  181. <artifactId>lombok</artifactId>
  182. <version>1.18.20</version>
  183. </dependency>
  184. <!-- fastjson -->
  185. <dependency>
  186. <groupId>com.alibaba.fastjson2</groupId>
  187. <artifactId>fastjson2</artifactId>
  188. <version>2.0.6</version>
  189. </dependency>
  190. <!--Jackson required包-->
  191. <dependency>
  192. <groupId>com.fasterxml.jackson.core</groupId>
  193. <artifactId>jackson-core</artifactId>
  194. <version>2.12.4</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>com.fasterxml.jackson.core</groupId>
  198. <artifactId>jackson-databind</artifactId>
  199. <version>2.12.4</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.fasterxml.jackson.core</groupId>
  203. <artifactId>jackson-annotations</artifactId>
  204. <version>2.12.4</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.google.protobuf</groupId>
  208. <artifactId>protobuf-java</artifactId>
  209. <version>3.2.0</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.googlecode.protobuf-java-format</groupId>
  213. <artifactId>protobuf-java-format</artifactId>
  214. <version>1.4</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.codehaus.jackson</groupId>
  218. <artifactId>jackson-mapper-asl</artifactId>
  219. <version>1.9.11</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.codehaus.jackson</groupId>
  223. <artifactId>jackson-smile</artifactId>
  224. <version>1.9.12</version>
  225. </dependency>
  226. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-ossadmin -->
  227. <dependency>
  228. <groupId>com.aliyun</groupId>
  229. <artifactId>aliyun-java-sdk-ossadmin</artifactId>
  230. <version>2.0.0</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>com.aliyun.oss</groupId>
  234. <artifactId>aliyun-sdk-oss</artifactId>
  235. <version>2.8.3</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.apache.httpcomponents</groupId>
  239. <artifactId>httpclient</artifactId>
  240. <version>4.5.3</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.apache.httpcomponents</groupId>
  244. <artifactId>httpmime</artifactId>
  245. <version>4.5.3</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>com.github.xiaoymin</groupId>
  249. <artifactId>knife4j-spring-boot-starter</artifactId>
  250. <version>2.0.3</version>
  251. </dependency>
  252. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  253. <dependency>
  254. <groupId>com.squareup.okhttp3</groupId>
  255. <artifactId>okhttp</artifactId>
  256. <version>4.0.0</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.apache.ant</groupId>
  260. <artifactId>ant</artifactId>
  261. <version>1.8.2</version>
  262. </dependency>
  263. <!-- 解压rar -->
  264. <dependency>
  265. <groupId>com.github.junrar</groupId>
  266. <artifactId>junrar</artifactId>
  267. <version>3.0.0</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>org.apache.poi</groupId>
  271. <artifactId>poi-ooxml</artifactId>
  272. <version>3.8</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>net.sf.json-lib</groupId>
  276. <artifactId>json-lib</artifactId>
  277. <version>2.4</version>
  278. <classifier>jdk15</classifier>
  279. </dependency>
  280. <dependency>
  281. <groupId>cn.hutool</groupId>
  282. <artifactId>hutool-all</artifactId>
  283. <version>5.8.2</version>
  284. </dependency>
  285. <!--lettuce-->
  286. <!--redis 相关 依赖-->
  287. <dependency>
  288. <groupId>org.springframework.boot</groupId>
  289. <artifactId>spring-boot-starter-data-redis</artifactId>
  290. <version>${spring-boot.version}</version>
  291. </dependency>
  292. <!-- lettuce pool 缓存连接池 -->
  293. <dependency>
  294. <groupId>org.apache.commons</groupId>
  295. <artifactId>commons-pool2</artifactId>
  296. <version>2.4.2</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>junit</groupId>
  300. <artifactId>junit</artifactId>
  301. <version>4.12</version>
  302. <scope>test</scope>
  303. </dependency>
  304. <dependency>
  305. <groupId>com.github.t3hnar</groupId>
  306. <artifactId>scala-bcrypt_2.10</artifactId>
  307. <version>2.3</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.apache.shiro</groupId>
  311. <artifactId>shiro-spring</artifactId>
  312. <version>1.6.0</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>com.auth0</groupId>
  316. <artifactId>java-jwt</artifactId>
  317. <version>3.7.0</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>com.alibaba.fastjson2</groupId>
  321. <artifactId>fastjson2</artifactId>
  322. <version>2.0.6</version>
  323. </dependency>
  324. <!-- 缓存 -->
  325. <dependency>
  326. <groupId>net.oschina.j2cache</groupId>
  327. <artifactId>j2cache-spring-boot2-starter</artifactId>
  328. <version>2.8.0-release</version>
  329. <!--排除这个slf4j-log4j12-->
  330. <exclusions>
  331. <exclusion>
  332. <groupId>org.slf4j</groupId>
  333. <artifactId>slf4j-simple</artifactId>
  334. </exclusion>
  335. </exclusions>
  336. </dependency>
  337. <dependency>
  338. <groupId>net.oschina.j2cache</groupId>
  339. <artifactId>j2cache-core</artifactId>
  340. <version>2.8.2-release</version>
  341. <!--排除这个slf4j-log4j12-->
  342. <exclusions>
  343. <exclusion>
  344. <groupId>org.slf4j</groupId>
  345. <artifactId>slf4j-simple</artifactId>
  346. </exclusion>
  347. </exclusions>
  348. </dependency>
  349. <dependency><!-- Ehcache 3.x //-->
  350. <groupId>org.ehcache</groupId>
  351. <artifactId>ehcache</artifactId>
  352. <version>3.4.0</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>com.github.houbb</groupId>
  356. <artifactId>sisyphus-springboot-starter</artifactId>
  357. <version>0.0.9</version>
  358. </dependency>
  359. <dependency>
  360. <groupId>org.yeauty</groupId>
  361. <artifactId>netty-websocket-spring-boot-starter</artifactId>
  362. <version>0.12.0</version>
  363. </dependency>
  364. <!-- 钉钉告警 -->
  365. <!-- <dependency>-->
  366. <!-- <groupId>com.aliyun</groupId>-->
  367. <!-- <artifactId>alibaba-dingtalk-service-sdk</artifactId>-->
  368. <!-- <version>1.0.1</version>-->
  369. <!-- </dependency>-->
  370. </dependencies>
  371. </dependencyManagement>
  372. <build>
  373. <plugins>
  374. <plugin>
  375. <groupId>org.apache.maven.plugins</groupId>
  376. <artifactId>maven-compiler-plugin</artifactId>
  377. <version>3.1</version>
  378. <configuration>
  379. <source>${java.version}</source>
  380. <target>${java.version}</target>
  381. </configuration>
  382. </plugin>
  383. <plugin>
  384. <groupId>org.apache.maven.plugins</groupId>
  385. <artifactId>maven-surefire-plugin</artifactId>
  386. <version>${maven-surefire-plugin.version}</version>
  387. <configuration>
  388. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  389. </configuration>
  390. </plugin>
  391. </plugins>
  392. </build>
  393. </project>