123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?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-user-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>
- <revision>1.0.0</revision>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-framework-dependencies</artifactId>
- <version>${revision}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>basic-framework</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>user-framework</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>customer-user-framework</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>third-framework</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- client -->
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>basic-client-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>user-client-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>customer-user-client-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>user-framework</module>
- <module>user-client-api</module>
- <module>user-manager-com-api</module>
- <module>user-manager-sys-api</module>
- <module>user-application-com-api</module>
- <module>user-application-sys-api</module>
- <module>basic-framework</module>
- <module>basic-manager-sys-api</module>
- <module>basic-application-api</module>
- <module>basic-client-api</module>
- <module>customer-user-framework</module>
- <module>customer-user-client-api</module>
- <module>customer-user-manager-sys-api</module>
- <module>customer-user-manager-com-api</module>
- <module>customer-user-application-api</module>
- <module>biz-run-application</module>
- <module>third-framework</module>
- <module>log-framework</module>
- <module>log-manager-api</module>
- <module>log-application-api</module>
- <module>store-file-framework</module>
- <module>store-file-application-api</module>
- <module>store-file-manager-api</module>
- <module>log-manager-client</module>
- </modules>
- </project>
|