pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.chelvc.framework</groupId>
  8. <artifactId>framework-parent</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>framework-dependencies</artifactId>
  13. <version>1.0.0-RELEASE</version>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <mvel.version>2.5.0.Final</mvel.version>
  17. <poi.version>5.0.0</poi.version>
  18. <mail.version>1.4.7</mail.version>
  19. <guava.version>23.0</guava.version>
  20. <zxing.version>3.4.1</zxing.version>
  21. <log4j.version>2.25.1</log4j.version>
  22. <xerces.version>2.12.0</xerces.version>
  23. <bcpkix-jdk15on.version>1.64</bcpkix-jdk15on.version>
  24. <pinyin4j.version>2.5.1</pinyin4j.version>
  25. <protostuff.version>1.7.2</protostuff.version>
  26. <xmpcore.version>6.1.11</xmpcore.version>
  27. <xmlbeans.version>5.0.0</xmlbeans.version>
  28. <caffeine.version>2.9.3</caffeine.version>
  29. <thumbnailator.version>0.4.14</thumbnailator.version>
  30. <geocoder.version>2.184</geocoder.version>
  31. <libphonenumber.version>8.12.48</libphonenumber.version>
  32. <metadata-extractor.version>2.15.0</metadata-extractor.version>
  33. <orika-core.version>1.5.4</orika-core.version>
  34. <commons-collections4.version>4.4</commons-collections4.version>
  35. <jsoup.version>1.13.1</jsoup.version>
  36. <dubbo.version>3.0.12</dubbo.version>
  37. <userAgentUtils.version>1.21</userAgentUtils.version>
  38. <fastdfs-client.version>1.27.2</fastdfs-client.version>
  39. <feign-httpclient.version>11.1</feign-httpclient.version>
  40. <rocketmq-client-java.version>5.0.5</rocketmq-client-java.version>
  41. <kafka-clients.version>2.8.1</kafka-clients.version>
  42. <spring-kafka.version>2.8.1</spring-kafka.version>
  43. <mybatis-plus.version>3.4.2</mybatis-plus.version>
  44. <mybatis-plus-generator.version>3.4.1</mybatis-plus-generator.version>
  45. <mybatis-plus-boot-starter.version>3.4.2</mybatis-plus-boot-starter.version>
  46. <dynamic-datasource-spring-boot-starter.version>3.3.2</dynamic-datasource-spring-boot-starter.version>
  47. <skywalking-logback.version>8.11.0</skywalking-logback.version>
  48. <dubbo-spring-boot-starter.version>3.0.12</dubbo-spring-boot-starter.version>
  49. <nacos-spring-context.version>0.3.6</nacos-spring-context.version>
  50. <nacos-config-spring-boot-starter.version>0.2.1</nacos-config-spring-boot-starter.version>
  51. <spring-security-jwt.version>1.1.1.RELEASE</spring-security-jwt.version>
  52. <spring-security-oauth2.version>2.3.8.RELEASE</spring-security-oauth2.version>
  53. <spring-boot-dependencies.version>2.3.9.RELEASE</spring-boot-dependencies.version>
  54. <spring-cloud-dependencies.version>Hoxton.SR10</spring-cloud-dependencies.version>
  55. <spring-cloud-alibaba-dependencies.version>2.2.9.RELEASE</spring-cloud-alibaba-dependencies.version>
  56. </properties>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.mvel</groupId>
  61. <artifactId>mvel2</artifactId>
  62. <version>${mvel.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>javax.mail</groupId>
  66. <artifactId>mail</artifactId>
  67. <version>${mail.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.google.guava</groupId>
  71. <artifactId>guava</artifactId>
  72. <version>${guava.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.google.zxing</groupId>
  76. <artifactId>javase</artifactId>
  77. <version>${zxing.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>xerces</groupId>
  81. <artifactId>xercesImpl</artifactId>
  82. <version>${xerces.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.logging.log4j</groupId>
  86. <artifactId>log4j-api</artifactId>
  87. <version>${log4j.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.logging.log4j</groupId>
  91. <artifactId>log4j-core</artifactId>
  92. <version>${log4j.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.logging.log4j</groupId>
  96. <artifactId>log4j-to-slf4j</artifactId>
  97. <version>${log4j.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.bouncycastle</groupId>
  101. <artifactId>bcpkix-jdk15on</artifactId>
  102. <version>${bcpkix-jdk15on.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.belerweb</groupId>
  106. <artifactId>pinyin4j</artifactId>
  107. <version>${pinyin4j.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.poi</groupId>
  111. <artifactId>poi</artifactId>
  112. <version>${poi.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.poi</groupId>
  116. <artifactId>poi-ooxml</artifactId>
  117. <version>${poi.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.xmlbeans</groupId>
  121. <artifactId>xmlbeans</artifactId>
  122. <version>${xmlbeans.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.ben-manes.caffeine</groupId>
  126. <artifactId>caffeine</artifactId>
  127. <version>${caffeine.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>io.protostuff</groupId>
  131. <artifactId>protostuff-core</artifactId>
  132. <version>${protostuff.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>io.protostuff</groupId>
  136. <artifactId>protostuff-runtime</artifactId>
  137. <version>${protostuff.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.adobe.xmp</groupId>
  141. <artifactId>xmpcore</artifactId>
  142. <version>${xmpcore.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>net.coobird</groupId>
  146. <artifactId>thumbnailator</artifactId>
  147. <version>${thumbnailator.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.googlecode.libphonenumber</groupId>
  151. <artifactId>libphonenumber</artifactId>
  152. <version>${libphonenumber.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.googlecode.libphonenumber</groupId>
  156. <artifactId>geocoder</artifactId>
  157. <version>${geocoder.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.drewnoakes</groupId>
  161. <artifactId>metadata-extractor</artifactId>
  162. <version>${metadata-extractor.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>ma.glasnost.orika</groupId>
  166. <artifactId>orika-core</artifactId>
  167. <version>${orika-core.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.commons</groupId>
  171. <artifactId>commons-collections4</artifactId>
  172. <version>${commons-collections4.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.jsoup</groupId>
  176. <artifactId>jsoup</artifactId>
  177. <version>${jsoup.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.dubbo</groupId>
  181. <artifactId>dubbo</artifactId>
  182. <version>${dubbo.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>eu.bitwalker</groupId>
  186. <artifactId>UserAgentUtils</artifactId>
  187. <version>${userAgentUtils.version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.github.tobato</groupId>
  191. <artifactId>fastdfs-client</artifactId>
  192. <version>${fastdfs-client.version}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>io.github.openfeign</groupId>
  196. <artifactId>feign-httpclient</artifactId>
  197. <version>${feign-httpclient.version}</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.rocketmq</groupId>
  201. <artifactId>rocketmq-client-java</artifactId>
  202. <version>${rocketmq-client-java.version}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.apache.kafka</groupId>
  206. <artifactId>kafka-clients</artifactId>
  207. <version>${kafka-clients.version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.springframework.kafka</groupId>
  211. <artifactId>spring-kafka</artifactId>
  212. <version>${spring-kafka.version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.apache.dubbo</groupId>
  216. <artifactId>dubbo-spring-boot-starter</artifactId>
  217. <version>${dubbo-spring-boot-starter.version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>com.baomidou</groupId>
  221. <artifactId>mybatis-plus</artifactId>
  222. <version>${mybatis-plus.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.baomidou</groupId>
  226. <artifactId>mybatis-plus-boot-starter</artifactId>
  227. <version>${mybatis-plus-boot-starter.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>com.baomidou</groupId>
  231. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  232. <version>${dynamic-datasource-spring-boot-starter.version}</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>com.alibaba.nacos</groupId>
  236. <artifactId>nacos-spring-context</artifactId>
  237. <version>${nacos-spring-context.version}</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>com.alibaba.boot</groupId>
  241. <artifactId>nacos-config-spring-boot-autoconfigure</artifactId>
  242. <version>${nacos-config-spring-boot-starter.version}</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>com.alibaba.boot</groupId>
  246. <artifactId>nacos-config-spring-boot-starter</artifactId>
  247. <version>${nacos-config-spring-boot-starter.version}</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.springframework.security</groupId>
  251. <artifactId>spring-security-jwt</artifactId>
  252. <version>${spring-security-jwt.version}</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.springframework.security.oauth</groupId>
  256. <artifactId>spring-security-oauth2</artifactId>
  257. <version>${spring-security-oauth2.version}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.springframework.boot</groupId>
  261. <artifactId>spring-boot-dependencies</artifactId>
  262. <version>${spring-boot-dependencies.version}</version>
  263. <type>pom</type>
  264. <scope>import</scope>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.springframework.cloud</groupId>
  268. <artifactId>spring-cloud-dependencies</artifactId>
  269. <version>${spring-cloud-dependencies.version}</version>
  270. <type>pom</type>
  271. <scope>import</scope>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.alibaba.cloud</groupId>
  275. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  276. <version>${spring-cloud-alibaba-dependencies.version}</version>
  277. <type>pom</type>
  278. <scope>import</scope>
  279. </dependency>
  280. </dependencies>
  281. </dependencyManagement>
  282. </project>