123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?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-healthy-java</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>
- <xx.framework.version>1.0.0</xx.framework.version>
- <xx.user.version>1.0.0</xx.user.version>
- <xx.metadata.version>1.0.0.wb</xx.metadata.version>
- <healthy.version>1.0.0</healthy.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>healthy-basic-framework</artifactId>
- <version>${healthy.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>healthy-data-framework</artifactId>
- <version>${healthy.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>healthy-service-framework</artifactId>
- <version>${healthy.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>healthy-scale-framework</artifactId>
- <version>${healthy.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>healthy-basic-client-api</artifactId>
- <version>${healthy.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>healthy-third-client-api</artifactId>
- <version>${healthy.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>healthy-basic-client-api</artifactId>
- <version>${healthy.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>metadata-client-api</artifactId>
- <version>${xx.metadata.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>healthy-third-client-api</module>
- <module>healthy-basic</module>
- <module>healthy-scale</module>
- <module>healthy-service</module>
- <module>healthy-push</module>
- <module>healthy-data</module>
- <module>healthy-common-model</module>
- <module>healthy-standard-data</module>
- <module>healthy-application-doctor</module>
- <module>healthy-application-patient</module>
- <module>healthy-mdt</module>
- <module>healthy-drug</module>
- <module>healthy-crm</module>
- </modules>
- </project>
|