2025-12-04 15:02:28 +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>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .parentArtifactId }}</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .parentArtifactId }}-common</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2026-05-11 12:00:51 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
2026-05-21 16:36:48 +08:00
|
|
|
<artifactId>{{ .parentArtifactId }}-client</artifactId>
|
2026-05-11 12:00:51 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2025-12-04 15:02:28 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .artifactId }}-common</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .artifactId }}-service</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .artifactId }}-persist</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .artifactId }}-manager</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2025-12-12 16:41:56 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
2025-12-12 17:05:02 +08:00
|
|
|
<artifactId>{{ .parentArtifactId }}-public-service</artifactId>
|
2025-12-12 16:41:56 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2026-06-16 18:43:30 +08:00
|
|
|
{{ if hasKey . "microserviceFrameworkType" }}
|
2026-05-25 14:44:23 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
2026-06-01 10:54:11 +08:00
|
|
|
<artifactId>{{ .parentArtifactId }}-remote-contract-types</artifactId>
|
2026-05-25 14:44:23 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2025-12-12 17:12:33 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
2026-06-01 10:54:11 +08:00
|
|
|
<artifactId>{{ .parentArtifactId }}-client</artifactId>
|
2025-12-12 17:12:33 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2026-06-16 18:43:30 +08:00
|
|
|
{{ end }}
|
2026-05-11 12:00:51 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
2026-06-01 10:54:11 +08:00
|
|
|
<artifactId>{{ .parentArtifactId }}-common</artifactId>
|
2026-05-11 12:00:51 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2025-12-12 16:41:56 +08:00
|
|
|
</dependencies>
|
2025-12-04 15:02:28 +08:00
|
|
|
<modules>
|
|
|
|
|
<module>persist</module>
|
|
|
|
|
<module>service</module>
|
|
|
|
|
<module>common</module>
|
|
|
|
|
<module>manager</module>
|
|
|
|
|
<module>entrance</module>
|
|
|
|
|
</modules>
|
|
|
|
|
</project>
|