82 lines
3.0 KiB
XML
82 lines
3.0 KiB
XML
<?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>
|
|
<parent>
|
|
<artifactId>plusone</artifactId>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>plusone-system</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>plusone-system</name>
|
|
|
|
<modules>
|
|
<module>plusone-system-common</module>
|
|
<module>plusone-system-domain</module>
|
|
<module>plusone-system-infrastructure</module>
|
|
<module>plusone-system-application</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-basic-common</artifactId>
|
|
<version>${plusone-basic.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-basic-domain</artifactId>
|
|
<version>${plusone-basic.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-basic-infrastructure</artifactId>
|
|
<version>${plusone-basic.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-basic-application</artifactId>
|
|
<version>${plusone-basic.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-system-common</artifactId>
|
|
<version>${plusone-system.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-system-domain</artifactId>
|
|
<version>${plusone-system.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-system-infrastructure</artifactId>
|
|
<version>${plusone-system.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xyz.zhouxy</groupId>
|
|
<artifactId>plusone-system-application</artifactId>
|
|
<version>${plusone-system.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|