pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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.SR2</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.pig4cloud</groupId>
  13. <artifactId>pigx-common-bom</artifactId>
  14. <packaging>pom</packaging>
  15. <version>${pigx.version}</version>
  16. <description>pigx 公共版本控制</description>
  17. <properties>
  18. <pigx.version>3.7.0</pigx.version>
  19. <mybatis-plus.version>3.3.1</mybatis-plus.version>
  20. <dynamic-ds.version>3.0.0</dynamic-ds.version>
  21. <druid.version>1.1.21</druid.version>
  22. <mysql.connector.version>8.0.19</mysql.connector.version>
  23. <swagger.core.version>1.5.22</swagger.core.version>
  24. <mp.weixin.version>3.6.0</mp.weixin.version>
  25. <ijpay.version>1.2.0</ijpay.version>
  26. <fastjson.version>1.2.62</fastjson.version>
  27. <aliyun.version>3.0.52.ALL</aliyun.version>
  28. </properties>
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.pig4cloud</groupId>
  33. <artifactId>pigx-common-core</artifactId>
  34. <version>${pigx.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.pig4cloud</groupId>
  38. <artifactId>pigx-common-data</artifactId>
  39. <version>${pigx.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.pig4cloud</groupId>
  43. <artifactId>pigx-common-gateway</artifactId>
  44. <version>${pigx.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.pig4cloud</groupId>
  48. <artifactId>pigx-common-gray</artifactId>
  49. <version>${pigx.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.pig4cloud</groupId>
  53. <artifactId>pigx-common-datasource</artifactId>
  54. <version>${pigx.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.pig4cloud</groupId>
  58. <artifactId>pigx-common-job</artifactId>
  59. <version>${pigx.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.pig4cloud</groupId>
  63. <artifactId>pigx-common-log</artifactId>
  64. <version>${pigx.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.pig4cloud</groupId>
  68. <artifactId>pigx-common-minio</artifactId>
  69. <version>${pigx.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.pig4cloud</groupId>
  73. <artifactId>pigx-common-security</artifactId>
  74. <version>${pigx.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.pig4cloud</groupId>
  78. <artifactId>pigx-common-sentinel</artifactId>
  79. <version>${pigx.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.pig4cloud</groupId>
  83. <artifactId>pigx-common-feign</artifactId>
  84. <version>${pigx.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.pig4cloud</groupId>
  88. <artifactId>pigx-common-sequence</artifactId>
  89. <version>${pigx.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.pig4cloud</groupId>
  93. <artifactId>pigx-common-swagger</artifactId>
  94. <version>${pigx.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.pig4cloud</groupId>
  98. <artifactId>pigx-common-transaction</artifactId>
  99. <version>${pigx.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.pig4cloud</groupId>
  103. <artifactId>pigx-upms-api</artifactId>
  104. <version>${pigx.version}</version>
  105. </dependency>
  106. <!--mybatis plus extension,包含了mybatis plus core-->
  107. <dependency>
  108. <groupId>com.baomidou</groupId>
  109. <artifactId>mybatis-plus-extension</artifactId>
  110. <version>${mybatis-plus.version}</version>
  111. </dependency>
  112. <!--mybatis-->
  113. <dependency>
  114. <groupId>com.baomidou</groupId>
  115. <artifactId>mybatis-plus-boot-starter</artifactId>
  116. <version>${mybatis-plus.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. <!--swagger 最新依赖内置版本-->
  137. <dependency>
  138. <groupId>io.swagger</groupId>
  139. <artifactId>swagger-models</artifactId>
  140. <version>${swagger.core.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>io.swagger</groupId>
  144. <artifactId>swagger-annotations</artifactId>
  145. <version>${swagger.core.version}</version>
  146. </dependency>
  147. <!--微信依赖-->
  148. <dependency>
  149. <groupId>com.github.binarywang</groupId>
  150. <artifactId>weixin-java-mp</artifactId>
  151. <version>${mp.weixin.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.github.binarywang</groupId>
  155. <artifactId>weixin-java-common</artifactId>
  156. <version>${mp.weixin.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.github.javen205</groupId>
  160. <artifactId>IJPay</artifactId>
  161. <version>${ijpay.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.alipay.sdk</groupId>
  165. <artifactId>alipay-sdk-java</artifactId>
  166. <version>${aliyun.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.baomidou</groupId>
  170. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  171. <version>${dynamic-ds.version}</version>
  172. </dependency>
  173. </dependencies>
  174. </dependencyManagement>
  175. <build>
  176. <plugins>
  177. <!--避免和parent bom坐标不一致 -->
  178. <plugin>
  179. <groupId>com.pig4cloud.plugin</groupId>
  180. <artifactId>spring-cloud-maven-plugin</artifactId>
  181. <version>1.1.1</version>
  182. <executions>
  183. <execution>
  184. <phase>package</phase>
  185. <goals>
  186. <goal>info</goal>
  187. </goals>
  188. </execution>
  189. </executions>
  190. </plugin>
  191. </plugins>
  192. </build>
  193. <pluginRepositories>
  194. <pluginRepository>
  195. <id>aliyun-plugin</id>
  196. <url>https://maven.aliyun.com/repository/public</url>
  197. <releases>
  198. <enabled>true</enabled>
  199. </releases>
  200. <snapshots>
  201. <enabled>false</enabled>
  202. </snapshots>
  203. </pluginRepository>
  204. </pluginRepositories>
  205. </project>