pom.xml 796 B

123456789101112131415161718192021222324252627282930
  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-common</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-framework</artifactId>
  18. </dependency>
  19. </dependencies>
  20. </project>