pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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.2.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>pigx-common-bom</artifactId>
  13. <packaging>pom</packaging>
  14. <version>2.2.1</version>
  15. <description>pigx 公共版本控制</description>
  16. <properties>
  17. <pigx.version>2.2.1</pigx.version>
  18. <jackson.modules>2.9.6</jackson.modules>
  19. <mybatis-plus.version>3.0.6</mybatis-plus.version>
  20. <mysql.connector.version>8.0.13</mysql.connector.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. <!--jackson模块-->
  76. <dependency>
  77. <groupId>com.fasterxml.jackson.module</groupId>
  78. <artifactId>jackson-modules-java8</artifactId>
  79. <version>${jackson.modules}</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. <!--mybatis plus extension,包含了mybatis plus core-->
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus-extension</artifactId>
  87. <version>${mybatis-plus.version}</version>
  88. </dependency>
  89. <!--mybatis-->
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-boot-starter</artifactId>
  93. <version>${mybatis-plus.version}</version>
  94. </dependency>
  95. <!--mysql 驱动-->
  96. <dependency>
  97. <groupId>mysql</groupId>
  98. <artifactId>mysql-connector-java</artifactId>
  99. <version>${mysql.connector.version}</version>
  100. </dependency>
  101. </dependencies>
  102. </dependencyManagement>
  103. </project>