123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?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</groupId>
- <artifactId>xx-metadata-java</artifactId>
- <version>1.0.0.wb</version>
- <packaging>pom</packaging>
- <description>元数据</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <xx.framework.version>1.0.0</xx.framework.version>
- <xx.basic.version>1.0.0</xx.basic.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>metadata-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>metadata-framework</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>metadata-client-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>user-client-api</artifactId>
- <version>${xx.basic.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>basic-client-api</artifactId>
- <version>${xx.basic.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>log-manager-client</artifactId>
- <version>${xx.basic.version}</version>
- </dependency>
- <!-- <!– h:scale –>-->
- <!-- <dependency>-->
- <!-- <groupId>com.xxh.cloud</groupId>-->
- <!-- <artifactId>healthy-scale-client</artifactId>-->
- <!-- <version>${xx.h.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.xxh.cloud</groupId>-->
- <!-- <artifactId>healthy-basic-label-client</artifactId>-->
- <!-- <version>${xx.h.version}</version>-->
- <!-- </dependency>-->
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>metadata-client-api</module>
- <module>metadata-framework</module>
- <module>metadata-manager-web</module>
- <module>metadata-common</module>
- </modules>
- </project>
|