Revert to snapshots
This commit is contained in:
@@ -201,7 +201,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0-SNAPSHOT</version>
|
||||
<version>0.8.0-SNAPSHOT-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
@@ -215,7 +215,7 @@ As shown in the snippet below this can then be followed by version-less declarat
|
||||
|
||||
```gradle
|
||||
dependencies {
|
||||
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT")
|
||||
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT")
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
2
pom.xml
2
pom.xml
@@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-client-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Client Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -40,7 +40,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -35,7 +35,7 @@ public class DefaultDeadlineSetupTests {
|
||||
class Deadline {
|
||||
|
||||
static boolean serverJarAvailable() {
|
||||
return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
|
||||
return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -52,7 +52,7 @@ public class DefaultDeadlineSetupTests {
|
||||
static CommonsExecWebServerFactoryBean grpcServer() {
|
||||
return CommonsExecWebServerFactoryBean.builder()
|
||||
.classpath(classpath -> classpath
|
||||
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
|
||||
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
|
||||
.files("target/test-classes"));
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@ public class DefaultDeadlineSetupTests {
|
||||
class WithoutDeadline {
|
||||
|
||||
static boolean serverJarAvailable() {
|
||||
return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
|
||||
return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -100,7 +100,7 @@ public class DefaultDeadlineSetupTests {
|
||||
static CommonsExecWebServerFactoryBean grpcServer() {
|
||||
return CommonsExecWebServerFactoryBean.builder()
|
||||
.classpath(classpath -> classpath
|
||||
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
|
||||
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
|
||||
.files("target/test-classes"));
|
||||
}
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ public class GrpcClientApplicationTests {
|
||||
}
|
||||
|
||||
static boolean serverJarAvailable() {
|
||||
return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
|
||||
return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -42,7 +42,7 @@ public class GrpcClientApplicationTests {
|
||||
static CommonsExecWebServerFactoryBean grpcServer() {
|
||||
return CommonsExecWebServerFactoryBean.builder()
|
||||
.classpath(classpath -> classpath
|
||||
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
|
||||
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
|
||||
.files("target/test-classes"));
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -27,7 +27,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-oauth2-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC OAuth2 Server Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -38,7 +38,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-reactive-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Reactive Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -38,7 +38,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-secure-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Secure Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -38,7 +38,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>com.example</groupId>
|
||||
<artifactId>grpc-server-netty-shaded</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Server Sample Netty Shaded</name>
|
||||
<description>Demo project for Spring Boot</description>
|
||||
<properties>
|
||||
@@ -25,7 +25,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-server-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Server Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -38,7 +38,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-tomcat-secure-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Tomcat Secure Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -38,7 +38,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-tomcat-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Tomcat Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -38,7 +38,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,7 +7,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.7.0'
|
||||
version = '0.8.0-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
@@ -23,7 +23,7 @@ repositories {
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
|
||||
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>grpc-webflux-sample</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<name>Spring gRPC Webflux Sample</name>
|
||||
<description>Demo project for Spring gRPC</description>
|
||||
<url />
|
||||
@@ -38,7 +38,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>parent-samples</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Parent Demo</name>
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-build-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Spring gRPC build dependencies</name>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-client-spring-boot-starter</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-core</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Spring gRPC (Bill of Materials)</name>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-docs</artifactId>
|
||||
<name>Spring gRPC Docs</name>
|
||||
|
||||
@@ -206,7 +206,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
|
||||
<dependency>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc-dependencies</artifactId>
|
||||
<version>0.7.0-SNAPSHOT</version>
|
||||
<version>0.8.0-SNAPSHOT-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
@@ -221,7 +221,7 @@ As shown in the snippet below this can then be followed by version-less declarat
|
||||
[source,gradle]
|
||||
----
|
||||
dependencies {
|
||||
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT")
|
||||
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT")
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-server-spring-boot-starter</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-server-web-spring-boot-starter</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-spring-boot-autoconfigure</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-spring-boot-starter</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.grpc</groupId>
|
||||
<artifactId>spring-grpc</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-grpc-test</artifactId>
|
||||
<name>Spring gRPC Test</name>
|
||||
|
||||
Reference in New Issue
Block a user