pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.dw</groupId>
  7. <artifactId>healthy-data</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. <!-- 数据服务-->
  15. <xx.framework.version>1.0.0</xx.framework.version>
  16. <xx.user.version>1.23.03-snapshot</xx.user.version>
  17. <xx.metadata.version>1.0.0.wb</xx.metadata.version>
  18. </properties>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.xxh.cloud</groupId>
  23. <artifactId>xx-framework-dependencies</artifactId>
  24. <version>${xx.framework.version}</version>
  25. <type>pom</type>
  26. <scope>import</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.xxh.cloud</groupId>
  30. <artifactId>user-client-api</artifactId>
  31. <version>${xx.user.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.xxh.cloud</groupId>
  35. <artifactId>basic-client-api</artifactId>
  36. <version>${xx.user.version}</version>
  37. </dependency>
  38. </dependencies>
  39. </dependencyManagement>
  40. <modules>
  41. <module>healthy-data-manager</module>
  42. <module>health-data-engine</module>
  43. <module>health-data-run</module>
  44. </modules>
  45. </project>