pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>spring-cloud-dependencies-parent</artifactId>
  8. <groupId>org.springframework.cloud</groupId>
  9. <version>2.1.3.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>pigx-common-bom</artifactId>
  13. <packaging>pom</packaging>
  14. <version>${pigx.version}</version>
  15. <description>pigx 公共版本控制</description>
  16. <properties>
  17. <pigx.version>2.7.0</pigx.version>
  18. <mybatis-plus.version>3.1.0</mybatis-plus.version>
  19. <mysql.connector.version>8.0.13</mysql.connector.version>
  20. <swagger.core.version>1.5.22</swagger.core.version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <!--pigx 工具包-->
  25. <dependency>
  26. <groupId>com.pig4cloud</groupId>
  27. <artifactId>pigx-common-core</artifactId>
  28. <version>${pigx.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.pig4cloud</groupId>
  32. <artifactId>pigx-common-data</artifactId>
  33. <version>${pigx.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.pig4cloud</groupId>
  37. <artifactId>pigx-common-gateway</artifactId>
  38. <version>${pigx.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.pig4cloud</groupId>
  42. <artifactId>pigx-common-job</artifactId>
  43. <version>${pigx.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.pig4cloud</groupId>
  47. <artifactId>pigx-common-log</artifactId>
  48. <version>${pigx.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.pig4cloud</groupId>
  52. <artifactId>pigx-common-minio</artifactId>
  53. <version>${pigx.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.pig4cloud</groupId>
  57. <artifactId>pigx-common-security</artifactId>
  58. <version>${pigx.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.pig4cloud</groupId>
  62. <artifactId>pigx-common-swagger</artifactId>
  63. <version>${pigx.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.pig4cloud</groupId>
  67. <artifactId>pigx-common-transaction</artifactId>
  68. <version>${pigx.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.pig4cloud</groupId>
  72. <artifactId>pigx-upms-api</artifactId>
  73. <version>${pigx.version}</version>
  74. </dependency>
  75. <!--mybatis plus extension,包含了mybatis plus core-->
  76. <dependency>
  77. <groupId>com.baomidou</groupId>
  78. <artifactId>mybatis-plus-extension</artifactId>
  79. <version>${mybatis-plus.version}</version>
  80. </dependency>
  81. <!--mybatis-->
  82. <dependency>
  83. <groupId>com.baomidou</groupId>
  84. <artifactId>mybatis-plus-boot-starter</artifactId>
  85. <version>${mybatis-plus.version}</version>
  86. </dependency>
  87. <!--mysql 驱动-->
  88. <dependency>
  89. <groupId>mysql</groupId>
  90. <artifactId>mysql-connector-java</artifactId>
  91. <version>${mysql.connector.version}</version>
  92. </dependency>
  93. <!--swagger 最新依赖内置版本-->
  94. <dependency>
  95. <groupId>io.swagger</groupId>
  96. <artifactId>swagger-models</artifactId>
  97. <version>${swagger.core.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.swagger</groupId>
  101. <artifactId>swagger-annotations</artifactId>
  102. <version>${swagger.core.version}</version>
  103. </dependency>
  104. </dependencies>
  105. </dependencyManagement>
  106. </project>