pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <groupId>com.xxh.cloud.inspur</groupId>
  7. <artifactId>xxh-inspur-java</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <xx.framework.version>1.0.0</xx.framework.version>
  15. </properties>
  16. <modules>
  17. <module>xxh-inspur-admin-web</module>
  18. <module>xxh-inspur-customer-web</module>
  19. <module>xxh-inspur-framework</module>
  20. <module>xxh-inspur-run</module>
  21. </modules>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.xxh.cloud</groupId>
  26. <artifactId>xx-framework-dependencies</artifactId>
  27. <version>${xx.framework.version}</version>
  28. <type>pom</type>
  29. <scope>import</scope>
  30. </dependency>
  31. </dependencies>
  32. </dependencyManagement>
  33. </project>