修改为remote_contract

This commit is contained in:
oyo
2026-06-01 10:51:58 +08:00
parent ce6f75417c
commit 7623fdd38a
6 changed files with 13 additions and 13 deletions

View File

@@ -343,8 +343,8 @@
</plugins>
</build>
<modules>
<module>public_api/types</module>
<module>public_api/interfaces</module>
<module>remote_contract/types</module>
<module>remote_contract/interfaces</module>
<module>public_service</module>
<module>entrance</module>
<module>common</module>

View File

@@ -12,7 +12,7 @@
<dependencies>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-public-api-types</artifactId>
<artifactId>{{ .artifactId }}-remote-contract-types</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>

View File

@@ -9,12 +9,12 @@
<dependencies>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-public-api-interfaces</artifactId>
<artifactId>{{ .artifactId }}-remote-contract-interfaces</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-public-api-types</artifactId>
<artifactId>{{ .artifactId }}-remote-contract-types</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
</dependencies>
@@ -35,8 +35,8 @@
<configuration>
<artifactSet>
<includes>
<include>{{ .groupId }}:{{ .artifactId }}-public-api-interfaces</include>
<include>{{ .groupId }}:{{ .artifactId }}-public-api-types</include>
<include>{{ .groupId }}:{{ .artifactId }}-remote-contract-interfaces</include>
<include>{{ .groupId }}:{{ .artifactId }}-remote-contract-types</include>
<include>io.github.think-1024:toco-all-spring5-springboot2-community</include>
</includes>
</artifactSet>

View File

@@ -4,16 +4,16 @@
<parent>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-public-api</artifactId>
<artifactId>{{ .artifactId }}-remote-contract</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>{{ .artifactId }}-public-api-interfaces</artifactId>
<artifactId>{{ .artifactId }}-remote-contract-interfaces</artifactId>
<dependencies>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-public-api-types</artifactId>
<artifactId>{{ .artifactId }}-remote-contract-types</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-public-api</artifactId>
<artifactId>{{ .artifactId }}-remote-contract</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>

View File

@@ -4,9 +4,9 @@
<parent>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-public-api</artifactId>
<artifactId>{{ .artifactId }}-remote-contract</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>{{ .artifactId }}-public-api-types</artifactId>
<artifactId>{{ .artifactId }}-remote-contract-types</artifactId>
</project>