diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml
index 75fe5b3d..c3b1196a 100644
--- a/.github/workflows/ci-pr.yml
+++ b/.github/workflows/ci-pr.yml
@@ -30,7 +30,7 @@ jobs:
cache: maven
- name: Build, test, and run samples (Java ${{ matrix.javaVersion }} ${{ matrix.distribution }})
run: |
- ./mvnw -B clean install
+ ./mvnw -B clean install-Dgpg.skip=true
- name: Upload Build Reports (Java ${{ matrix.javaVersion }} ${{ matrix.distribution }})
if: failure()
uses: actions/upload-artifact@v4
diff --git a/README.md b/README.md
index 1c0650f4..dafa82a7 100644
--- a/README.md
+++ b/README.md
@@ -211,7 +211,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
@@ -225,7 +225,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:1.0.2-SNAPSHOT")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.0.2")
}
```
diff --git a/pom.xml b/pom.xml
index 5531afab..6c1d3fe0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
https://github.com/spring-projects/spring-grpc
diff --git a/samples/grpc-client/build.gradle b/samples/grpc-client/build.gradle
index 7e58267c..9ccbc879 100644
--- a/samples/grpc-client/build.gradle
+++ b/samples/grpc-client/build.gradle
@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -28,7 +28,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-client/pom.xml b/samples/grpc-client/pom.xml
index 744d7357..fbba33e9 100644
--- a/samples/grpc-client/pom.xml
+++ b/samples/grpc-client/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-client-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Client Sample
Demo project for Spring gRPC
@@ -40,7 +40,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java
index e00f45ca..f29a2b20 100644
--- a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java
+++ b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java
@@ -34,7 +34,7 @@ public class DefaultDeadlineSetupTests {
class Deadline {
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-1.0.2-SNAPSHOT.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.2.jar").exists();
}
@Test
@@ -51,7 +51,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.2-SNAPSHOT"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.2"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
@@ -82,7 +82,7 @@ public CommandLineRunner otherRunner(SimpleGrpc.SimpleBlockingStub stub) {
class WithoutDeadline {
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-1.0.2-SNAPSHOT.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.2.jar").exists();
}
@Test
@@ -99,7 +99,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.2-SNAPSHOT"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.2"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
diff --git a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java
index 52d57861..59569d3d 100644
--- a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java
+++ b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java
@@ -26,7 +26,7 @@ public static void main(String[] args) {
}
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-1.0.2-SNAPSHOT.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.2.jar").exists();
}
@Test
@@ -42,7 +42,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.2-SNAPSHOT"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.2"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
diff --git a/samples/grpc-oauth2/build.gradle b/samples/grpc-oauth2/build.gradle
index 3f52cfc9..e83eeb5c 100644
--- a/samples/grpc-oauth2/build.gradle
+++ b/samples/grpc-oauth2/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -33,7 +33,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-oauth2/pom.xml b/samples/grpc-oauth2/pom.xml
index 10152b83..9b0b10ac 100644
--- a/samples/grpc-oauth2/pom.xml
+++ b/samples/grpc-oauth2/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-oauth2-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC OAuth2 Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-reactive/build.gradle b/samples/grpc-reactive/build.gradle
index 16ac0e94..84bbebc5 100644
--- a/samples/grpc-reactive/build.gradle
+++ b/samples/grpc-reactive/build.gradle
@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -28,7 +28,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-reactive/pom.xml b/samples/grpc-reactive/pom.xml
index f9ac5ee9..7167b86f 100644
--- a/samples/grpc-reactive/pom.xml
+++ b/samples/grpc-reactive/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-reactive-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Reactive Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-secure/build.gradle b/samples/grpc-secure/build.gradle
index 8499fa36..098222c0 100644
--- a/samples/grpc-secure/build.gradle
+++ b/samples/grpc-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
java {
toolchain {
@@ -24,7 +24,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.2-SNAPSHOT'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.2'
}
}
diff --git a/samples/grpc-secure/pom.xml b/samples/grpc-secure/pom.xml
index 723b75f1..b9ec2175 100644
--- a/samples/grpc-secure/pom.xml
+++ b/samples/grpc-secure/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-secure-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-server-kotlin/HELP-gradle.md b/samples/grpc-server-kotlin/HELP-gradle.md
index 1bb869af..75799b25 100644
--- a/samples/grpc-server-kotlin/HELP-gradle.md
+++ b/samples/grpc-server-kotlin/HELP-gradle.md
@@ -34,7 +34,7 @@ $ ./gradlew bootBuildImage
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server:1.0.2-SNAPSHOT
+$ docker run --rm grpc-server:1.0.2
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server-kotlin/HELP-maven.md b/samples/grpc-server-kotlin/HELP-maven.md
index 8b954e75..32aa6aa5 100644
--- a/samples/grpc-server-kotlin/HELP-maven.md
+++ b/samples/grpc-server-kotlin/HELP-maven.md
@@ -33,7 +33,7 @@ $ ./mvnw spring-boot:build-image -Pnative
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server-sample:1.0.2-SNAPSHOT
+$ docker run --rm grpc-server-sample:1.0.2
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server-kotlin/build.gradle b/samples/grpc-server-kotlin/build.gradle
index 4b2f1132..32297178 100644
--- a/samples/grpc-server-kotlin/build.gradle
+++ b/samples/grpc-server-kotlin/build.gradle
@@ -8,7 +8,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
// Highest jvm supported is 24
@@ -32,7 +32,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-server-kotlin/pom.xml b/samples/grpc-server-kotlin/pom.xml
index f023c45d..ed1671d6 100644
--- a/samples/grpc-server-kotlin/pom.xml
+++ b/samples/grpc-server-kotlin/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-server-kotlin-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Kotlin Server Sample
Demo project for Spring gRPC
@@ -40,7 +40,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-server-netty-shaded/build.gradle b/samples/grpc-server-netty-shaded/build.gradle
index 0dbacae7..0a7f7954 100644
--- a/samples/grpc-server-netty-shaded/build.gradle
+++ b/samples/grpc-server-netty-shaded/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml
index 7deb0134..86b06ff4 100644
--- a/samples/grpc-server-netty-shaded/pom.xml
+++ b/samples/grpc-server-netty-shaded/pom.xml
@@ -11,7 +11,7 @@
com.example
grpc-server-netty-shaded
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Server Sample Netty Shaded
Demo project for Spring Boot
@@ -25,7 +25,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-server/HELP-gradle.md b/samples/grpc-server/HELP-gradle.md
index 1bb869af..75799b25 100644
--- a/samples/grpc-server/HELP-gradle.md
+++ b/samples/grpc-server/HELP-gradle.md
@@ -34,7 +34,7 @@ $ ./gradlew bootBuildImage
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server:1.0.2-SNAPSHOT
+$ docker run --rm grpc-server:1.0.2
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server/HELP-maven.md b/samples/grpc-server/HELP-maven.md
index 8b954e75..32aa6aa5 100644
--- a/samples/grpc-server/HELP-maven.md
+++ b/samples/grpc-server/HELP-maven.md
@@ -33,7 +33,7 @@ $ ./mvnw spring-boot:build-image -Pnative
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server-sample:1.0.2-SNAPSHOT
+$ docker run --rm grpc-server-sample:1.0.2
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle
index 56056f91..140400bb 100644
--- a/samples/grpc-server/build.gradle
+++ b/samples/grpc-server/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml
index 55a22e7b..3d2e6421 100644
--- a/samples/grpc-server/pom.xml
+++ b/samples/grpc-server/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-server-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-tomcat-secure/build.gradle b/samples/grpc-tomcat-secure/build.gradle
index b64d5fb2..e745a2aa 100644
--- a/samples/grpc-tomcat-secure/build.gradle
+++ b/samples/grpc-tomcat-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-tomcat-secure/pom.xml b/samples/grpc-tomcat-secure/pom.xml
index eb23d289..7742cb58 100644
--- a/samples/grpc-tomcat-secure/pom.xml
+++ b/samples/grpc-tomcat-secure/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-tomcat-secure-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Tomcat Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-tomcat/build.gradle b/samples/grpc-tomcat/build.gradle
index cdbf7da3..4992365e 100644
--- a/samples/grpc-tomcat/build.gradle
+++ b/samples/grpc-tomcat/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml
index 64cddae5..f0f5b4d9 100644
--- a/samples/grpc-tomcat/pom.xml
+++ b/samples/grpc-tomcat/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-tomcat-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Tomcat Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-webflux-secure/build.gradle b/samples/grpc-webflux-secure/build.gradle
index 30e24059..ad35e628 100644
--- a/samples/grpc-webflux-secure/build.gradle
+++ b/samples/grpc-webflux-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -33,7 +33,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-webflux-secure/pom.xml b/samples/grpc-webflux-secure/pom.xml
index 6ab294e4..9a5f3465 100644
--- a/samples/grpc-webflux-secure/pom.xml
+++ b/samples/grpc-webflux-secure/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-webflux-sample-secure
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Webflux Sample Secure
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/grpc-webflux/build.gradle b/samples/grpc-webflux/build.gradle
index 89711849..ed6998c7 100644
--- a/samples/grpc-webflux/build.gradle
+++ b/samples/grpc-webflux/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.2-SNAPSHOT'
+version = '1.0.2'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.2'
dependencyManagement {
imports {
diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml
index a936b10a..30805518 100644
--- a/samples/grpc-webflux/pom.xml
+++ b/samples/grpc-webflux/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-webflux-sample
- 1.0.2-SNAPSHOT
+ 1.0.2
Spring gRPC Webflux Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
diff --git a/samples/pom.xml b/samples/pom.xml
index c2553194..1eb91527 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -6,12 +6,12 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
org.springframework.grpc
parent-samples
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
Parent Demo
diff --git a/spring-grpc-build-dependencies/pom.xml b/spring-grpc-build-dependencies/pom.xml
index 6acf8d5a..1b5f6883 100644
--- a/spring-grpc-build-dependencies/pom.xml
+++ b/spring-grpc-build-dependencies/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc-build-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
Spring gRPC build dependencies
diff --git a/spring-grpc-client-spring-boot-autoconfigure/pom.xml b/spring-grpc-client-spring-boot-autoconfigure/pom.xml
index c9b02817..97c03b5e 100644
--- a/spring-grpc-client-spring-boot-autoconfigure/pom.xml
+++ b/spring-grpc-client-spring-boot-autoconfigure/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-client-spring-boot-autoconfigure
jar
diff --git a/spring-grpc-client-spring-boot-starter/pom.xml b/spring-grpc-client-spring-boot-starter/pom.xml
index 7b874d2b..d83bdd7a 100644
--- a/spring-grpc-client-spring-boot-starter/pom.xml
+++ b/spring-grpc-client-spring-boot-starter/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-client-spring-boot-starter
jar
diff --git a/spring-grpc-core/pom.xml b/spring-grpc-core/pom.xml
index de5a23a7..1485f5f7 100644
--- a/spring-grpc-core/pom.xml
+++ b/spring-grpc-core/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-core
jar
diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml
index 36c94f8d..65ea86f8 100644
--- a/spring-grpc-dependencies/pom.xml
+++ b/spring-grpc-dependencies/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
Spring gRPC (Bill of Materials)
diff --git a/spring-grpc-docs/pom.xml b/spring-grpc-docs/pom.xml
index 2791297d..f9490ca1 100644
--- a/spring-grpc-docs/pom.xml
+++ b/spring-grpc-docs/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-docs
Spring gRPC Docs
diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc
index af3b8bb3..2648062b 100644
--- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc
+++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc
@@ -217,7 +217,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
org.springframework.grpc
spring-grpc-dependencies
- 1.0.2-SNAPSHOT
+ 1.0.2
pom
import
@@ -232,7 +232,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:1.0.2-SNAPSHOT")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.0.2")
}
----
diff --git a/spring-grpc-server-spring-boot-autoconfigure/pom.xml b/spring-grpc-server-spring-boot-autoconfigure/pom.xml
index 4c5b5944..1e70c18e 100644
--- a/spring-grpc-server-spring-boot-autoconfigure/pom.xml
+++ b/spring-grpc-server-spring-boot-autoconfigure/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-server-spring-boot-autoconfigure
jar
diff --git a/spring-grpc-server-spring-boot-starter/pom.xml b/spring-grpc-server-spring-boot-starter/pom.xml
index ac3fdd88..3a285862 100644
--- a/spring-grpc-server-spring-boot-starter/pom.xml
+++ b/spring-grpc-server-spring-boot-starter/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-server-spring-boot-starter
jar
diff --git a/spring-grpc-server-web-spring-boot-starter/pom.xml b/spring-grpc-server-web-spring-boot-starter/pom.xml
index adf6ae41..dbaa16b4 100644
--- a/spring-grpc-server-web-spring-boot-starter/pom.xml
+++ b/spring-grpc-server-web-spring-boot-starter/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-server-web-spring-boot-starter
jar
diff --git a/spring-grpc-spring-boot-starter/pom.xml b/spring-grpc-spring-boot-starter/pom.xml
index c98676f2..ad7135a5 100644
--- a/spring-grpc-spring-boot-starter/pom.xml
+++ b/spring-grpc-spring-boot-starter/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-spring-boot-starter
jar
diff --git a/spring-grpc-test-spring-boot-autoconfigure/pom.xml b/spring-grpc-test-spring-boot-autoconfigure/pom.xml
index e1a3e726..a89a0d1c 100644
--- a/spring-grpc-test-spring-boot-autoconfigure/pom.xml
+++ b/spring-grpc-test-spring-boot-autoconfigure/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-test-spring-boot-autoconfigure
jar
diff --git a/spring-grpc-test/pom.xml b/spring-grpc-test/pom.xml
index ea2ff4ef..26fefb9a 100644
--- a/spring-grpc-test/pom.xml
+++ b/spring-grpc-test/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.2-SNAPSHOT
+ 1.0.2
spring-grpc-test
jar