123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.xxh.cloud.etl</groupId>
- <artifactId>healthy-etl</artifactId>
- <version>1.0.0</version>
- <packaging>pom</packaging>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <health.etl.version>1.0.0</health.etl.version>
- <xx.framework.version>1.0.0</xx.framework.version>
- <xx.user.version>1.23.03-snapshot</xx.user.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-framework-dependencies</artifactId>
- <version>${xx.framework.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-script</artifactId>
- <version>${xx.framework.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>user-client-api</artifactId>
- <version>${xx.user.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>basic-client-api</artifactId>
- <version>${xx.user.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>healthy-common-model</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>health-etl-config-web</module>
- <module>health-etl-config-framework</module>
- <module>health-etl-config-client</module>
- <module>health-etl-execute-web</module>
- <module>health-etl-execute-framework</module>
- <module>health-etl-config-run</module>
- <module>health-etl-sync-framework</module>
- <module>health-etl-data-framework</module>
- <module>health-etl-data-web</module>
- <module>health-etl-sync-web</module>
- <module>health-etl-common</module>
- </modules>
- </project>
|