pom.xml 15 KB

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