pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>healthy-etl</artifactId>
  5. <groupId>com.xxh.cloud.etl</groupId>
  6. <version>1.0.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>health-etl-data-web</artifactId>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.xxh.cloud</groupId>
  17. <artifactId>xx-config-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.xxh.cloud.etl</groupId>
  21. <artifactId>health-etl-config-framework</artifactId>
  22. <version>${project.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.xxh.cloud.etl</groupId>
  26. <artifactId>health-etl-data-framework</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. </dependencies>
  30. </project>