pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-user</module>
  11. <module>4dkankan-center-goods</module>
  12. <module>4dkankan-center-agent</module>
  13. <module>4dkankan-center-order</module>
  14. </modules>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.3.12.RELEASE</version>
  19. <relativePath/>
  20. </parent>
  21. <groupId>com.fdkankan</groupId>
  22. <artifactId>4dkankan-parent</artifactId>
  23. <version>1.0.0</version>
  24. <packaging>pom</packaging>
  25. <properties>
  26. <java.version>1.8</java.version>
  27. <hutool-version>5.7.17</hutool-version>
  28. <spring.cloud-version>Hoxton.SR8</spring.cloud-version>
  29. <fdkankan.common-version>1.0.0</fdkankan.common-version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>cn.hutool</groupId>
  34. <artifactId>hutool-all</artifactId>
  35. <version>${hutool-version}</version>
  36. </dependency>
  37. </dependencies>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-dependencies</artifactId>
  43. <version>${spring.cloud-version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.hutool</groupId>
  49. <artifactId>hutool-all</artifactId>
  50. <version>${hutool-version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.fdkankan</groupId>
  54. <artifactId>4dkankan-common</artifactId>
  55. <version>${fdkankan.common-version}</version>
  56. </dependency>
  57. </dependencies>
  58. </dependencyManagement>
  59. <build>
  60. <pluginManagement>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <version>3.1</version>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-surefire-plugin</artifactId>
  74. <version>${maven-surefire-plugin.version}</version>
  75. <configuration>
  76. <skipTests>true</skipTests><!--默认关掉单元测试 -->
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </pluginManagement>
  81. </build>
  82. </project>