pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.7.18</version>
  8. </parent>
  9. <groupId>com.txz</groupId>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <!-- Inherit defaults from Spring Boot -->
  18. <dependencies>
  19. <!--异维科技web引擎依赖-->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.logging.log4j</groupId>
  26. <artifactId>log4j-core</artifactId>
  27. <version>2.24.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.logging.log4j</groupId>
  31. <artifactId>log4j-api</artifactId>
  32. <version>2.24.1</version>
  33. </dependency>
  34. <!-- 替换undertow容器 -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-undertow</artifactId>
  38. </dependency>
  39. <!--redis依赖-->
  40. <!-- <dependency>-->
  41. <!-- <groupId>org.springframework.boot</groupId>-->
  42. <!-- <artifactId>spring-boot-starter-redis</artifactId>-->
  43. <!-- <version>1.3.8.RELEASE</version>-->
  44. <!-- </dependency>-->
  45. <!-- <dependency>-->
  46. <!-- <groupId>redis.clients</groupId>-->
  47. <!-- <artifactId>jedis</artifactId>-->
  48. <!-- <version>2.9.0</version>-->
  49. <!-- </dependency>-->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-actuator</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-webflux</artifactId>
  57. <exclusions>
  58. <exclusion>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-tomcat</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.retry</groupId>
  70. <artifactId>spring-retry</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-aop</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>commons-lang</groupId>
  78. <artifactId>commons-lang</artifactId>
  79. <version>2.6</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-jdbc</artifactId>
  84. </dependency>
  85. <!--常用库依赖-->
  86. <dependency>
  87. <groupId>commons-codec</groupId>
  88. <artifactId>commons-codec</artifactId>
  89. </dependency>
  90. <!-- <dependency>-->
  91. <!-- <groupId>org.apache.commons</groupId>-->
  92. <!-- <artifactId>commons-lang3</artifactId>-->
  93. <!-- <version>3.5</version>-->
  94. <!-- </dependency>-->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-cache</artifactId>
  98. </dependency>
  99. <!-- <dependency>-->
  100. <!-- <groupId>javax.servlet</groupId>-->
  101. <!-- <artifactId>javax.servlet-api</artifactId>-->
  102. <!-- <version>3.1.0</version>-->
  103. <!-- <scope>provided</scope>-->
  104. <!-- </dependency>-->
  105. <!--MySQL JDBC驱动-->
  106. <dependency>
  107. <groupId>mysql</groupId>
  108. <artifactId>mysql-connector-java</artifactId>
  109. <version>8.0.33</version>
  110. <scope>runtime</scope>
  111. </dependency>
  112. <!--MyBatis 及 插件依赖-->
  113. <dependency>
  114. <groupId>org.mybatis</groupId>
  115. <artifactId>mybatis-spring</artifactId>
  116. <version>2.0.1</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.mybatis</groupId>
  120. <artifactId>mybatis</artifactId>
  121. <version>3.4.4</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>tk.mybatis</groupId>
  125. <artifactId>mapper</artifactId>
  126. <version>3.4.0</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.mybatis.spring.boot</groupId>
  130. <artifactId>mybatis-spring-boot-starter</artifactId>
  131. <version>2.0.1</version>
  132. </dependency>
  133. <!-- 升级分页插件 -->
  134. <dependency>
  135. <groupId>com.github.pagehelper</groupId>
  136. <artifactId>pagehelper-spring-boot-starter</artifactId>
  137. <version>1.2.3</version>
  138. </dependency>
  139. <!--阿里 FastJson依赖-->
  140. <dependency>
  141. <groupId>com.alibaba</groupId>
  142. <artifactId>fastjson</artifactId>
  143. <version>1.2.69</version>
  144. </dependency>
  145. <!--阿里 Druid Spring Boot Starter依赖-->
  146. <!-- <dependency>-->
  147. <!-- <groupId>com.alibaba</groupId>-->
  148. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  149. <!-- <version>1.1.10</version>-->
  150. <!-- </dependency>-->
  151. <!--代码生成器依赖-->
  152. <dependency>
  153. <groupId>org.freemarker</groupId>
  154. <artifactId>freemarker</artifactId>
  155. <version>2.3.23</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.mybatis.generator</groupId>
  159. <artifactId>mybatis-generator-core</artifactId>
  160. <version>1.3.5</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.baomidou</groupId>
  164. <artifactId>mybatis-plus-boot-starter</artifactId>
  165. <version>3.4.2</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.alibaba</groupId>
  169. <artifactId>easyexcel</artifactId>
  170. <version>3.3.2</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.github.misterchangray.mybatis.generator.plugins</groupId>
  174. <artifactId>myBatisGeneratorPlugins</artifactId>
  175. <version>1.2</version>
  176. </dependency>
  177. <!-- swagger2 -->
  178. <dependency>
  179. <groupId>io.springfox</groupId>
  180. <artifactId>springfox-swagger2</artifactId>
  181. <version>2.9.2</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>io.springfox</groupId>
  185. <artifactId>springfox-swagger-ui</artifactId>
  186. <version>2.9.2</version>
  187. </dependency>
  188. <!-- <dependency>-->
  189. <!-- <groupId>com.google.collections</groupId>-->
  190. <!-- <artifactId>google-collections</artifactId>-->
  191. <!-- <version>1.0</version>-->
  192. <!-- </dependency>-->
  193. <dependency>
  194. <groupId>com.github.xiaoymin</groupId>
  195. <artifactId>swagger-bootstrap-ui</artifactId>
  196. <version>1.9.6</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>io.swagger</groupId>
  200. <artifactId>swagger-annotations</artifactId>
  201. <scope>compile</scope>
  202. <version>1.5.22</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>io.swagger</groupId>
  206. <artifactId>swagger-models</artifactId>
  207. <version>1.5.22</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.spring4all</groupId>
  211. <artifactId>swagger-spring-boot-starter</artifactId>
  212. <version>1.8.0.RELEASE</version>
  213. <scope>compile</scope>
  214. </dependency>
  215. <!--异维科技cloud包依赖-->
  216. <!-- <dependency>-->
  217. <!-- <groupId>org.springframework.cloud</groupId>-->
  218. <!-- <artifactId>spring-cloud-starter-dubbo</artifactId>-->
  219. <!-- <version>0.2.2.RELEASE</version>-->
  220. <!-- </dependency>-->
  221. <dependency>
  222. <groupId>org.springframework.cloud</groupId>
  223. <artifactId>spring-cloud-starter-openfeign</artifactId>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.springframework.cloud</groupId>
  227. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.springframework.cloud</groupId>
  231. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  232. </dependency>
  233. <!-- <dependency>-->
  234. <!-- <groupId>io.jsonwebtoken</groupId>-->
  235. <!-- <artifactId>jjwt</artifactId>-->
  236. <!-- <version>0.9.1</version>-->
  237. <!-- </dependency>-->
  238. <!-- <dependency>-->
  239. <!-- <groupId>cn.hutool</groupId>-->
  240. <!-- <artifactId>hutool-all</artifactId>-->
  241. <!-- <version>RELEASE</version>-->
  242. <!-- <scope>compile</scope>-->
  243. <!-- </dependency>-->
  244. <dependency>
  245. <groupId>org.apache.poi</groupId>
  246. <artifactId>poi-ooxml</artifactId>
  247. <version>4.1.2</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.projectlombok</groupId>
  251. <artifactId>lombok</artifactId>
  252. <version>1.18.10</version>
  253. </dependency>
  254. <!-- <dependency>-->
  255. <!-- <groupId>com.qcloud</groupId>-->
  256. <!-- <artifactId>cos_api</artifactId>-->
  257. <!-- <version>5.6.8</version>-->
  258. <!-- </dependency>-->
  259. <!-- MQ -->
  260. <!-- <dependency>-->
  261. <!-- <groupId>org.springframework.boot</groupId>-->
  262. <!-- <artifactId>spring-boot-starter-amqp</artifactId>-->
  263. <!-- </dependency>-->
  264. <dependency>
  265. <groupId>org.apache.rocketmq</groupId>
  266. <artifactId>rocketmq-spring-boot-starter</artifactId>
  267. </dependency>
  268. <!-- Dubbo Spring Boot Starter(升级为2.7.23) -->
  269. <dependency>
  270. <groupId>org.apache.dubbo</groupId>
  271. <artifactId>dubbo-spring-boot-starter</artifactId>
  272. <version>3.0.10</version>
  273. </dependency>
  274. <!-- dubbo序列化方式 -->
  275. <dependency>
  276. <groupId>com.esotericsoftware</groupId>
  277. <artifactId>kryo</artifactId>
  278. <version>4.0.2</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>de.javakaffee</groupId>
  282. <artifactId>kryo-serializers</artifactId>
  283. <version>0.45</version>
  284. </dependency>
  285. <!-- Dubbo 核心依赖(升级为2.7.23) -->
  286. <dependency>
  287. <groupId>org.apache.dubbo</groupId>
  288. <artifactId>dubbo</artifactId>
  289. <version>2.7.23</version>
  290. </dependency>
  291. <!-- Dubbo Registry Nacos(升级为2.7.23) -->
  292. <dependency>
  293. <groupId>org.apache.dubbo</groupId>
  294. <artifactId>dubbo-registry-nacos</artifactId>
  295. <version>2.7.23</version>
  296. </dependency>
  297. <!-- Nacos客户端(适配Dubbo 2.7.23,升级为1.4.3) -->
  298. <dependency>
  299. <groupId>com.alibaba.nacos</groupId>
  300. <artifactId>nacos-client</artifactId>
  301. <version>1.4.3</version>
  302. <exclusions>
  303. <exclusion>
  304. <groupId>com.google.guava</groupId>
  305. <artifactId>guava</artifactId>
  306. </exclusion>
  307. </exclusions>
  308. </dependency>
  309. </dependencies>
  310. <distributionManagement>
  311. <snapshotRepository>
  312. <id>nexus-snapshots</id>
  313. <name>Nexus Snapshot Repository</name>
  314. <url>http://124.220.229.80:9091/repository/maven-snapshots/</url>
  315. </snapshotRepository>
  316. <repository>
  317. <id>nexus-releases</id>
  318. <name>Nexus Release Repository</name>
  319. <url>http://124.220.229.80:9091/repository/maven-releases/</url>
  320. </repository>
  321. </distributionManagement>
  322. <dependencyManagement>
  323. <dependencies>
  324. <dependency>
  325. <groupId>org.springframework.cloud</groupId>
  326. <artifactId>spring-cloud-dependencies</artifactId>
  327. <version>Finchley.SR1</version>
  328. <type>pom</type>
  329. <scope>import</scope>
  330. </dependency>
  331. <dependency>
  332. <groupId>org.springframework.cloud</groupId>
  333. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  334. <version>0.2.2.RELEASE</version>
  335. <type>pom</type>
  336. <scope>import</scope>
  337. </dependency>
  338. </dependencies>
  339. </dependencyManagement>
  340. <build>
  341. <plugins>
  342. <plugin>
  343. <groupId>org.springframework.boot</groupId>
  344. <artifactId>spring-boot-maven-plugin</artifactId>
  345. <configuration>
  346. <classifier>exec</classifier>
  347. </configuration>
  348. <executions>
  349. <execution>
  350. <goals>
  351. <goal>repackage</goal>
  352. </goals>
  353. </execution>
  354. </executions>
  355. </plugin>
  356. <plugin>
  357. <artifactId>maven-compiler-plugin</artifactId>
  358. <configuration>
  359. <source>${java.version}</source>
  360. <target>${java.version}</target>
  361. <encoding>UTF-8</encoding>
  362. </configuration>
  363. </plugin>
  364. </plugins>
  365. </build>
  366. </project>