pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. <artifactId>pigx-cloud-dependencies-parent</artifactId>
  8. <groupId>com.pig4cloud</groupId>
  9. <version>Hoxton.SR5</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.qunzhixinxi</groupId>
  13. <artifactId>hnqz-common-bom</artifactId>
  14. <packaging>pom</packaging>
  15. <version>3.9.0</version>
  16. <description>hnqz 公共版本控制</description>
  17. <properties>
  18. <hnqz.version>3.9.0</hnqz.version>
  19. <mybatis-plus.version>3.3.2</mybatis-plus.version>
  20. <dynamic-ds.version>3.0.0</dynamic-ds.version>
  21. <druid.version>1.1.22</druid.version>
  22. <mysql.connector.version>8.0.20</mysql.connector.version>
  23. <mp.weixin.version>3.7.0</mp.weixin.version>
  24. <groovy.version>3.0.3</groovy.version>
  25. <security.oauth.version>2.3.6.RELEASE</security.oauth.version>
  26. <fastjson.version>1.2.69</fastjson.version>
  27. <commons-io.version>2.8.0</commons-io.version>
  28. </properties>
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.qunzhixinxi</groupId>
  33. <artifactId>hnqz-common-core</artifactId>
  34. <version>${hnqz.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.qunzhixinxi</groupId>
  38. <artifactId>hnqz-common-data</artifactId>
  39. <version>${hnqz.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.qunzhixinxi</groupId>
  43. <artifactId>hnqz-common-gateway</artifactId>
  44. <version>${hnqz.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.qunzhixinxi</groupId>
  48. <artifactId>hnqz-common-gray</artifactId>
  49. <version>${hnqz.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.qunzhixinxi</groupId>
  53. <artifactId>hnqz-common-datasource</artifactId>
  54. <version>${hnqz.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.qunzhixinxi</groupId>
  58. <artifactId>hnqz-common-job</artifactId>
  59. <version>${hnqz.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.qunzhixinxi</groupId>
  63. <artifactId>hnqz-common-log</artifactId>
  64. <version>${hnqz.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.qunzhixinxi</groupId>
  68. <artifactId>hnqz-common-oss</artifactId>
  69. <version>${hnqz.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.qunzhixinxi</groupId>
  73. <artifactId>hnqz-common-security</artifactId>
  74. <version>${hnqz.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.qunzhixinxi</groupId>
  78. <artifactId>hnqz-common-sentinel</artifactId>
  79. <version>${hnqz.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.qunzhixinxi</groupId>
  83. <artifactId>hnqz-common-feign</artifactId>
  84. <version>${hnqz.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.qunzhixinxi</groupId>
  88. <artifactId>hnqz-common-sequence</artifactId>
  89. <version>${hnqz.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.qunzhixinxi</groupId>
  93. <artifactId>hnqz-common-mq</artifactId>
  94. <version>${hnqz.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.qunzhixinxi</groupId>
  98. <artifactId>hnqz-upms-api</artifactId>
  99. <version>${hnqz.version}</version>
  100. </dependency>
  101. <!--mybatis plus extension,包含了mybatis plus core-->
  102. <dependency>
  103. <groupId>com.baomidou</groupId>
  104. <artifactId>mybatis-plus-extension</artifactId>
  105. <version>${mybatis-plus.version}</version>
  106. </dependency>
  107. <!--mybatis-->
  108. <dependency>
  109. <groupId>com.baomidou</groupId>
  110. <artifactId>mybatis-plus-boot-starter</artifactId>
  111. <version>${mybatis-plus.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.baomidou</groupId>
  115. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  116. <version>${dynamic-ds.version}</version>
  117. </dependency>
  118. <!-- druid 连接池 -->
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>druid-spring-boot-starter</artifactId>
  122. <version>${druid.version}</version>
  123. </dependency>
  124. <!--mysql 驱动-->
  125. <dependency>
  126. <groupId>mysql</groupId>
  127. <artifactId>mysql-connector-java</artifactId>
  128. <version>${mysql.connector.version}</version>
  129. </dependency>
  130. <!--fastjson-->
  131. <dependency>
  132. <groupId>com.alibaba</groupId>
  133. <artifactId>fastjson</artifactId>
  134. <version>${fastjson.version}</version>
  135. </dependency>
  136. <!-- io -->
  137. <dependency>
  138. <groupId>commons-io</groupId>
  139. <artifactId>commons-io</artifactId>
  140. <version>${commons-io.version}</version>
  141. </dependency>
  142. <!--微信依赖-->
  143. <dependency>
  144. <groupId>com.github.binarywang</groupId>
  145. <artifactId>weixin-java-mp</artifactId>
  146. <version>${mp.weixin.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.github.binarywang</groupId>
  150. <artifactId>weixin-java-common</artifactId>
  151. <version>${mp.weixin.version}</version>
  152. </dependency>
  153. <!--定义groovy 版本-->
  154. <dependency>
  155. <groupId>org.codehaus.groovy</groupId>
  156. <artifactId>groovy</artifactId>
  157. <version>${groovy.version}</version>
  158. </dependency>
  159. <!--稳定版本,替代spring security bom内置-->
  160. <dependency>
  161. <groupId>org.springframework.security.oauth</groupId>
  162. <artifactId>spring-security-oauth2</artifactId>
  163. <version>${security.oauth.version}</version>
  164. </dependency>
  165. </dependencies>
  166. </dependencyManagement>
  167. <build>
  168. <plugins>
  169. <!--避免和parent bom坐标不一致 -->
  170. <plugin>
  171. <groupId>com.pig4cloud.plugin</groupId>
  172. <artifactId>spring-cloud-maven-plugin</artifactId>
  173. <version>1.1.1</version>
  174. <executions>
  175. <execution>
  176. <phase>package</phase>
  177. <goals>
  178. <goal>info</goal>
  179. </goals>
  180. </execution>
  181. </executions>
  182. </plugin>
  183. <!-- nothing to do, but we need this to run docker:build form project root -->
  184. <plugin>
  185. <groupId>io.fabric8</groupId>
  186. <artifactId>docker-maven-plugin</artifactId>
  187. <version>0.32.0</version>
  188. <configuration>
  189. <skip>true</skip>
  190. </configuration>
  191. </plugin>
  192. <!--代码格式插件,默认使用spring 规则-->
  193. <plugin>
  194. <groupId>io.spring.javaformat</groupId>
  195. <artifactId>spring-javaformat-maven-plugin</artifactId>
  196. <version>0.0.22</version>
  197. </plugin>
  198. </plugins>
  199. </build>
  200. <pluginRepositories>
  201. <pluginRepository>
  202. <id>aliyun-plugin</id>
  203. <url>https://maven.aliyun.com/repository/public</url>
  204. <releases>
  205. <enabled>true</enabled>
  206. </releases>
  207. <snapshots>
  208. <enabled>false</enabled>
  209. </snapshots>
  210. </pluginRepository>
  211. </pluginRepositories>
  212. </project>