修改为remote_contract

This commit is contained in:
oyo
2026-06-01 10:51:58 +08:00
parent 5c8ad7d42e
commit 9c6af1d68b
6 changed files with 13 additions and 13 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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