pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.6.0</pigx.version>
  18. <mybatis-plus.version>3.1.0</mybatis-plus.version>
  19. <mysql.connector.version>8.0.13</mysql.connector.version>
  20. </properties>
  21. <dependencyManagement>
  22. <dependencies>
  23. <!--pigx 工具包-->
  24. <dependency>
  25. <groupId>com.pig4cloud</groupId>
  26. <artifactId>pigx-common-core</artifactId>
  27. <version>${pigx.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.pig4cloud</groupId>
  31. <artifactId>pigx-common-data</artifactId>
  32. <version>${pigx.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.pig4cloud</groupId>
  36. <artifactId>pigx-common-gateway</artifactId>
  37. <version>${pigx.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.pig4cloud</groupId>
  41. <artifactId>pigx-common-job</artifactId>
  42. <version>${pigx.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.pig4cloud</groupId>
  46. <artifactId>pigx-common-log</artifactId>
  47. <version>${pigx.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.pig4cloud</groupId>
  51. <artifactId>pigx-common-minio</artifactId>
  52. <version>${pigx.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.pig4cloud</groupId>
  56. <artifactId>pigx-common-security</artifactId>
  57. <version>${pigx.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.pig4cloud</groupId>
  61. <artifactId>pigx-common-swagger</artifactId>
  62. <version>${pigx.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.pig4cloud</groupId>
  66. <artifactId>pigx-common-transaction</artifactId>
  67. <version>${pigx.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.pig4cloud</groupId>
  71. <artifactId>pigx-upms-api</artifactId>
  72. <version>${pigx.version}</version>
  73. </dependency>
  74. <!--mybatis plus extension,包含了mybatis plus core-->
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus-extension</artifactId>
  78. <version>${mybatis-plus.version}</version>
  79. </dependency>
  80. <!--mybatis-->
  81. <dependency>
  82. <groupId>com.baomidou</groupId>
  83. <artifactId>mybatis-plus-boot-starter</artifactId>
  84. <version>${mybatis-plus.version}</version>
  85. </dependency>
  86. <!--mysql 驱动-->
  87. <dependency>
  88. <groupId>mysql</groupId>
  89. <artifactId>mysql-connector-java</artifactId>
  90. <version>${mysql.connector.version}</version>
  91. </dependency>
  92. </dependencies>
  93. </dependencyManagement>
  94. </project>