Files
pub-module-template/template/pom.xml

51 lines
1.8 KiB
XML
Raw Normal View History

2025-06-15 15:45:44 +08:00
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}</artifactId>
<version>{{ .version }}</version>
<packaging>pom</packaging>
<parent>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .parentArtifactId }}</artifactId>
<relativePath>../../pom.xml</relativePath>
2025-10-14 16:08:41 +08:00
<version>{{ .version }}</version>
2025-06-15 15:45:44 +08:00
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .parentArtifactId }}-common</artifactId>
2025-10-14 16:10:04 +08:00
<version>{{ .version }}</version>
2025-06-15 15:45:44 +08:00
</dependency>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-common</artifactId>
<version>{{ .version }}</version>
</dependency>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-service</artifactId>
<version>{{ .version }}</version>
</dependency>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-persist</artifactId>
<version>{{ .version }}</version>
</dependency>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-manager</artifactId>
<version>{{ .version }}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>persist</module>
<module>service</module>
<module>common</module>
<module>manager</module>
<module>entrance</module>
</modules>
</project>