Skip to content

Commit b948e8b

Browse files
committed
feat: update module name
1 parent eae4880 commit b948e8b

File tree

53 files changed

+31
-31
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+31
-31
lines changed

README.md

+3-3

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<version>1.0-SNAPSHOT</version>
1111
<modules>
1212
<module>trpc-selector</module>
13-
<module>trpc-examples-stub</module>
14-
<module>trpc-examples-chain</module>
15-
<module>trpc-examples-coroutine</module>
16-
<module>trpc-examples-gateway</module>
13+
<module>trpc-stub</module>
14+
<module>trpc-chain</module>
15+
<module>trpc-coroutine</module>
16+
<module>trpc-gateway</module>
1717
<module>trpc-native</module>
1818
<module>trpc-spring</module>
1919
<module>trpc-limiter</module>

trpc-examples-chain/pom.xml trpc-chain/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>trpc-examples-chain</artifactId>
12+
<artifactId>trpc-chain</artifactId>
1313

1414
<dependencies>
1515
<dependency>
1616
<groupId>com.tencent.trpc.examples</groupId>
17-
<artifactId>trpc-examples-stub</artifactId>
17+
<artifactId>trpc-stub</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>

trpc-examples-coroutine/pom.xml trpc-coroutine/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>trpc-examples-coroutine</artifactId>
12+
<artifactId>trpc-coroutine</artifactId>
1313

1414
<build>
1515
<plugins>
@@ -35,7 +35,7 @@
3535
<dependencies>
3636
<dependency>
3737
<groupId>com.tencent.trpc.examples</groupId>
38-
<artifactId>trpc-examples-stub</artifactId>
38+
<artifactId>trpc-stub</artifactId>
3939
<version>${project.version}</version>
4040
</dependency>
4141
<dependency>

trpc-examples-gateway/pom.xml trpc-gateway/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>pom</packaging>
1212

13-
<artifactId>trpc-examples-gateway</artifactId>
13+
<artifactId>trpc-gateway</artifactId>
1414
<modules>
15-
<module>trpc-examples-gateway-client</module>
16-
<module>trpc-examples-gateway-server</module>
15+
<module>trpc-gateway-client</module>
16+
<module>trpc-gateway-server</module>
1717
</modules>
1818

1919
</project>

trpc-examples-gateway/trpc-examples-gateway-server/pom.xml trpc-gateway/trpc-gateway-client/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>trpc-examples-gateway</artifactId>
6+
<artifactId>trpc-gateway</artifactId>
77
<groupId>com.tencent.trpc.examples</groupId>
88
<version>1.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>trpc-examples-gateway-server</artifactId>
12+
<artifactId>trpc-gateway-client</artifactId>
1313

1414
<dependencies>
1515
<dependency>
1616
<groupId>com.tencent.trpc.examples</groupId>
17-
<artifactId>trpc-examples-stub</artifactId>
17+
<artifactId>trpc-stub</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>

trpc-examples-gateway/trpc-examples-gateway-client/pom.xml trpc-gateway/trpc-gateway-server/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>trpc-examples-gateway</artifactId>
6+
<artifactId>trpc-gateway</artifactId>
77
<groupId>com.tencent.trpc.examples</groupId>
88
<version>1.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>trpc-examples-gateway-client</artifactId>
12+
<artifactId>trpc-gateway-server</artifactId>
1313

1414
<dependencies>
1515
<dependency>
1616
<groupId>com.tencent.trpc.examples</groupId>
17-
<artifactId>trpc-examples-stub</artifactId>
17+
<artifactId>trpc-stub</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>

trpc-limiter/trpc-limiter-polaris/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependencies>
2020
<dependency>
2121
<groupId>com.tencent.trpc.examples</groupId>
22-
<artifactId>trpc-examples-stub</artifactId>
22+
<artifactId>trpc-stub</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>
2525
<dependency>

trpc-limiter/trpc-limiter-sentinel/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<dependencies>
1414
<dependency>
1515
<groupId>com.tencent.trpc.examples</groupId>
16-
<artifactId>trpc-examples-stub</artifactId>
16+
<artifactId>trpc-stub</artifactId>
1717
<version>${project.version}</version>
1818
</dependency>
1919
<dependency>

trpc-native/trpc-native-simpleclient/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependencies>
1515
<dependency>
1616
<groupId>com.tencent.trpc.examples</groupId>
17-
<artifactId>trpc-examples-stub</artifactId>
17+
<artifactId>trpc-stub</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>

trpc-native/trpc-native-simpleserver/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependencies>
1515
<dependency>
1616
<groupId>com.tencent.trpc.examples</groupId>
17-
<artifactId>trpc-examples-stub</artifactId>
17+
<artifactId>trpc-stub</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>

trpc-scala/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</dependency>
3939
<dependency>
4040
<groupId>com.tencent.trpc.examples</groupId>
41-
<artifactId>trpc-examples-stub</artifactId>
41+
<artifactId>trpc-stub</artifactId>
4242
<version>${project.version}</version>
4343
</dependency>
4444
<dependency>

trpc-selector/trpc-selector-open-polaris-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependencies>
3636
<dependency>
3737
<groupId>com.tencent.trpc.examples</groupId>
38-
<artifactId>trpc-examples-stub</artifactId>
38+
<artifactId>trpc-stub</artifactId>
3939
<version>${project.version}</version>
4040
<exclusions>
4141
<exclusion>

trpc-selector/trpc-selector-open-polaris-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependencies>
3636
<dependency>
3737
<groupId>com.tencent.trpc.examples</groupId>
38-
<artifactId>trpc-examples-stub</artifactId>
38+
<artifactId>trpc-stub</artifactId>
3939
<version>${project.version}</version>
4040
<exclusions>
4141
<exclusion>

trpc-selector/trpc-selector-open-polaris/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependencies>
3636
<dependency>
3737
<groupId>com.tencent.trpc.examples</groupId>
38-
<artifactId>trpc-examples-stub</artifactId>
38+
<artifactId>trpc-stub</artifactId>
3939
<version>${project.version}</version>
4040
<exclusions>
4141
<exclusion>

trpc-selector/trpc-selector-zookeeper/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependencies>
1515
<dependency>
1616
<groupId>com.tencent.trpc.examples</groupId>
17-
<artifactId>trpc-examples-stub</artifactId>
17+
<artifactId>trpc-stub</artifactId>
1818
<version>${project.version}</version>
1919
<exclusions>
2020
<exclusion>

trpc-spring/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependencies>
2121
<dependency>
2222
<groupId>com.tencent.trpc.examples</groupId>
23-
<artifactId>trpc-examples-stub</artifactId>
23+
<artifactId>trpc-stub</artifactId>
2424
<version>${project.version}</version>
2525
</dependency>
2626
<dependency>

trpc-examples-stub/pom.xml trpc-stub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>trpc-examples-stub</artifactId>
12+
<artifactId>trpc-stub</artifactId>
1313

1414
<build>
1515
<plugins>

0 commit comments

Comments
 (0)