pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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. <groupId>com.chelvc.framework</groupId>
  7. <artifactId>framework-dependencies</artifactId>
  8. <version>1.0.0-RELEASE</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <maven.compiler.source.version>1.8</maven.compiler.source.version>
  12. <maven.compiler.target.version>1.8</maven.compiler.target.version>
  13. <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
  14. <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
  15. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <mvel.version>2.5.0.Final</mvel.version>
  18. <poi.version>5.0.0</poi.version>
  19. <mail.version>1.4.7</mail.version>
  20. <guava.version>23.0</guava.version>
  21. <zxing.version>3.4.1</zxing.version>
  22. <xerces.version>2.12.0</xerces.version>
  23. <lombok.version>1.18.18</lombok.version>
  24. <bcpkix-jdk15on.version>1.64</bcpkix-jdk15on.version>
  25. <pinyin4j.version>2.5.1</pinyin4j.version>
  26. <protostuff.version>1.7.2</protostuff.version>
  27. <xmpcore.version>6.1.11</xmpcore.version>
  28. <xmlbeans.version>5.0.0</xmlbeans.version>
  29. <caffeine.version>2.9.3</caffeine.version>
  30. <thumbnailator.version>0.4.14</thumbnailator.version>
  31. <geocoder.version>2.184</geocoder.version>
  32. <libphonenumber.version>8.12.48</libphonenumber.version>
  33. <metadata-extractor.version>2.15.0</metadata-extractor.version>
  34. <orika-core.version>1.5.4</orika-core.version>
  35. <commons-collections4.version>4.4</commons-collections4.version>
  36. <jsoup.version>1.13.1</jsoup.version>
  37. <dubbo.version>3.0.12</dubbo.version>
  38. <mapstruct-processor.version>1.5.2.Final</mapstruct-processor.version>
  39. <lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
  40. <userAgentUtils.version>1.21</userAgentUtils.version>
  41. <fastdfs-client.version>1.27.2</fastdfs-client.version>
  42. <feign-httpclient.version>11.1</feign-httpclient.version>
  43. <rocketmq-client-java.version>5.0.5</rocketmq-client-java.version>
  44. <kafka-clients.version>2.8.1</kafka-clients.version>
  45. <spring-kafka.version>2.8.1</spring-kafka.version>
  46. <mybatis-plus.version>3.4.2</mybatis-plus.version>
  47. <mybatis-plus-generator.version>3.4.1</mybatis-plus-generator.version>
  48. <mybatis-plus-boot-starter.version>3.4.2</mybatis-plus-boot-starter.version>
  49. <dynamic-datasource-spring-boot-starter.version>3.3.2</dynamic-datasource-spring-boot-starter.version>
  50. <skywalking-logback.version>8.11.0</skywalking-logback.version>
  51. <dubbo-spring-boot-starter.version>3.0.12</dubbo-spring-boot-starter.version>
  52. <nacos-spring-context.version>0.3.6</nacos-spring-context.version>
  53. <nacos-config-spring-boot-starter.version>0.2.1</nacos-config-spring-boot-starter.version>
  54. <spring-security-jwt.version>1.1.1.RELEASE</spring-security-jwt.version>
  55. <spring-security-oauth2.version>2.3.8.RELEASE</spring-security-oauth2.version>
  56. <spring-boot-dependencies.version>2.3.9.RELEASE</spring-boot-dependencies.version>
  57. <spring-cloud-dependencies.version>Hoxton.SR10</spring-cloud-dependencies.version>
  58. <spring-cloud-alibaba-dependencies.version>2.2.9.RELEASE</spring-cloud-alibaba-dependencies.version>
  59. </properties>
  60. <dependencyManagement>
  61. <dependencies>
  62. <dependency>
  63. <groupId>org.mvel</groupId>
  64. <artifactId>mvel2</artifactId>
  65. <version>${mvel.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>javax.mail</groupId>
  69. <artifactId>mail</artifactId>
  70. <version>${mail.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.guava</groupId>
  74. <artifactId>guava</artifactId>
  75. <version>${guava.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.google.zxing</groupId>
  79. <artifactId>javase</artifactId>
  80. <version>${zxing.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>xerces</groupId>
  84. <artifactId>xercesImpl</artifactId>
  85. <version>${xerces.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.bouncycastle</groupId>
  89. <artifactId>bcpkix-jdk15on</artifactId>
  90. <version>${bcpkix-jdk15on.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.belerweb</groupId>
  94. <artifactId>pinyin4j</artifactId>
  95. <version>${pinyin4j.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.poi</groupId>
  99. <artifactId>poi</artifactId>
  100. <version>${poi.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.poi</groupId>
  104. <artifactId>poi-ooxml</artifactId>
  105. <version>${poi.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.xmlbeans</groupId>
  109. <artifactId>xmlbeans</artifactId>
  110. <version>${xmlbeans.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.github.ben-manes.caffeine</groupId>
  114. <artifactId>caffeine</artifactId>
  115. <version>${caffeine.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>io.protostuff</groupId>
  119. <artifactId>protostuff-core</artifactId>
  120. <version>${protostuff.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>io.protostuff</groupId>
  124. <artifactId>protostuff-runtime</artifactId>
  125. <version>${protostuff.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.adobe.xmp</groupId>
  129. <artifactId>xmpcore</artifactId>
  130. <version>${xmpcore.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>net.coobird</groupId>
  134. <artifactId>thumbnailator</artifactId>
  135. <version>${thumbnailator.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.googlecode.libphonenumber</groupId>
  139. <artifactId>libphonenumber</artifactId>
  140. <version>${libphonenumber.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.googlecode.libphonenumber</groupId>
  144. <artifactId>geocoder</artifactId>
  145. <version>${geocoder.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.drewnoakes</groupId>
  149. <artifactId>metadata-extractor</artifactId>
  150. <version>${metadata-extractor.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>ma.glasnost.orika</groupId>
  154. <artifactId>orika-core</artifactId>
  155. <version>${orika-core.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.commons</groupId>
  159. <artifactId>commons-collections4</artifactId>
  160. <version>${commons-collections4.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.jsoup</groupId>
  164. <artifactId>jsoup</artifactId>
  165. <version>${jsoup.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.dubbo</groupId>
  169. <artifactId>dubbo</artifactId>
  170. <version>${dubbo.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>eu.bitwalker</groupId>
  174. <artifactId>UserAgentUtils</artifactId>
  175. <version>${userAgentUtils.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.github.tobato</groupId>
  179. <artifactId>fastdfs-client</artifactId>
  180. <version>${fastdfs-client.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>io.github.openfeign</groupId>
  184. <artifactId>feign-httpclient</artifactId>
  185. <version>${feign-httpclient.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.rocketmq</groupId>
  189. <artifactId>rocketmq-client-java</artifactId>
  190. <version>${rocketmq-client-java.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.kafka</groupId>
  194. <artifactId>kafka-clients</artifactId>
  195. <version>${kafka-clients.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.springframework.kafka</groupId>
  199. <artifactId>spring-kafka</artifactId>
  200. <version>${spring-kafka.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.dubbo</groupId>
  204. <artifactId>dubbo-spring-boot-starter</artifactId>
  205. <version>${dubbo-spring-boot-starter.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>com.baomidou</groupId>
  209. <artifactId>mybatis-plus</artifactId>
  210. <version>${mybatis-plus.version}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>com.baomidou</groupId>
  214. <artifactId>mybatis-plus-boot-starter</artifactId>
  215. <version>${mybatis-plus-boot-starter.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>com.baomidou</groupId>
  219. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  220. <version>${dynamic-datasource-spring-boot-starter.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.alibaba.nacos</groupId>
  224. <artifactId>nacos-spring-context</artifactId>
  225. <version>${nacos-spring-context.version}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>com.alibaba.boot</groupId>
  229. <artifactId>nacos-config-spring-boot-autoconfigure</artifactId>
  230. <version>${nacos-config-spring-boot-starter.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>com.alibaba.boot</groupId>
  234. <artifactId>nacos-config-spring-boot-starter</artifactId>
  235. <version>${nacos-config-spring-boot-starter.version}</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.springframework.security</groupId>
  239. <artifactId>spring-security-jwt</artifactId>
  240. <version>${spring-security-jwt.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.springframework.security.oauth</groupId>
  244. <artifactId>spring-security-oauth2</artifactId>
  245. <version>${spring-security-oauth2.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.springframework.boot</groupId>
  249. <artifactId>spring-boot-dependencies</artifactId>
  250. <version>${spring-boot-dependencies.version}</version>
  251. <type>pom</type>
  252. <scope>import</scope>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.springframework.cloud</groupId>
  256. <artifactId>spring-cloud-dependencies</artifactId>
  257. <version>${spring-cloud-dependencies.version}</version>
  258. <type>pom</type>
  259. <scope>import</scope>
  260. </dependency>
  261. <dependency>
  262. <groupId>com.alibaba.cloud</groupId>
  263. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  264. <version>${spring-cloud-alibaba-dependencies.version}</version>
  265. <type>pom</type>
  266. <scope>import</scope>
  267. </dependency>
  268. </dependencies>
  269. </dependencyManagement>
  270. <build>
  271. <plugins>
  272. <plugin>
  273. <groupId>org.apache.maven.plugins</groupId>
  274. <artifactId>maven-compiler-plugin</artifactId>
  275. <version>${maven-compiler-plugin.version}</version>
  276. <configuration>
  277. <source>${maven.compiler.source.version}</source>
  278. <target>${maven.compiler.target.version}</target>
  279. <compilerArgs>
  280. <compilerArg>-parameters</compilerArg>
  281. </compilerArgs>
  282. <annotationProcessorPaths>
  283. <path>
  284. <groupId>org.projectlombok</groupId>
  285. <artifactId>lombok</artifactId>
  286. <version>${lombok.version}</version>
  287. </path>
  288. <path>
  289. <groupId>org.projectlombok</groupId>
  290. <artifactId>lombok-mapstruct-binding</artifactId>
  291. <version>${lombok-mapstruct-binding.version}</version>
  292. </path>
  293. <path>
  294. <groupId>org.mapstruct</groupId>
  295. <artifactId>mapstruct-processor</artifactId>
  296. <version>${mapstruct-processor.version}</version>
  297. </path>
  298. </annotationProcessorPaths>
  299. </configuration>
  300. </plugin>
  301. <plugin>
  302. <groupId>org.apache.maven.plugins</groupId>
  303. <artifactId>maven-deploy-plugin</artifactId>
  304. <version>${maven-deploy-plugin.version}</version>
  305. </plugin>
  306. <plugin>
  307. <groupId>org.apache.maven.plugins</groupId>
  308. <artifactId>maven-source-plugin</artifactId>
  309. <version>${maven-source-plugin.version}</version>
  310. <executions>
  311. <execution>
  312. <id>attach-sources</id>
  313. <goals>
  314. <goal>jar-no-fork</goal>
  315. </goals>
  316. </execution>
  317. </executions>
  318. </plugin>
  319. </plugins>
  320. </build>
  321. </project>