pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. <version>${hutool-version}</version>
  34. </dependency>
  35. </dependencies>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.alibaba.cloud</groupId>
  40. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  41. <version>2.2.7.RELEASE</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-dependencies</artifactId>
  48. <version>${spring.cloud-version}</version>
  49. <type>pom</type>
  50. <scope>import</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>cn.hutool</groupId>
  54. <artifactId>hutool-all</artifactId>
  55. <version>${hutool-version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fdkankan</groupId>
  59. <artifactId>4dkankan-common</artifactId>
  60. <version>${fdkankan.common-version}</version>
  61. </dependency>
  62. </dependencies>
  63. </dependencyManagement>
  64. <build>
  65. <pluginManagement>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-compiler-plugin</artifactId>
  74. <version>3.1</version>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-surefire-plugin</artifactId>
  79. <version>${maven-surefire-plugin.version}</version>
  80. <configuration>
  81. <skipTests>true</skipTests><!--默认关掉单元测试 -->
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </pluginManagement>
  86. </build>
  87. </project>