pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <modules>
  6. <module>4dkankan-common</module>
  7. <module>4dkankan-gateway</module>
  8. <module>4dkankan-center-scene</module>
  9. <module>4dkankan-common</module>
  10. <module>4dkankan-center-platform</module>
  11. <module>4dkankan-pom</module>
  12. </modules>
  13. <parent>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-parent</artifactId>
  16. <version>2.3.12.RELEASE</version>
  17. <relativePath/>
  18. </parent>
  19. <groupId>com.fdkankan</groupId>
  20. <artifactId>4dkankan-parent</artifactId>
  21. <version>2.0.0</version>
  22. <packaging>pom</packaging>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <hutool-version>5.7.17</hutool-version>
  26. <spring.cloud-version>Hoxton.SR8</spring.cloud-version>
  27. <fdkankan.common-version>2.0.0</fdkankan.common-version>
  28. <fastjson>1.2.58</fastjson>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>cn.hutool</groupId>
  33. <artifactId>hutool-all</artifactId>
  34. <version>${hutool-version}</version>
  35. </dependency>
  36. </dependencies>
  37. <dependencyManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>com.alibaba.cloud</groupId>
  41. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  42. <version>2.2.7.RELEASE</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.cloud</groupId>
  48. <artifactId>spring-cloud-dependencies</artifactId>
  49. <version>${spring.cloud-version}</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <version>${hutool-version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fdkankan</groupId>
  60. <artifactId>4dkankan-common</artifactId>
  61. <version>${fdkankan.common-version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>fastjson</artifactId>
  66. <version>${fastjson}</version>
  67. </dependency>
  68. </dependencies>
  69. </dependencyManagement>
  70. <build>
  71. <pluginManagement>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-compiler-plugin</artifactId>
  80. <version>3.1</version>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-surefire-plugin</artifactId>
  85. <version>${maven-surefire-plugin.version}</version>
  86. <configuration>
  87. <skipTests>true</skipTests><!--默认关掉单元测试 -->
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </pluginManagement>
  92. </build>
  93. </project>