diff --git a/README.md b/README.md
index f0a4c49a..c670ba2e 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.0-SNAPSHOT
+ 1.0.0
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.0-SNAPSHOT")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.0.0")
}
```
diff --git a/pom.xml b/pom.xml
index 8fbbb233..7ad45ee9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
https://github.com/spring-projects/spring-grpc
diff --git a/samples/grpc-client/build.gradle b/samples/grpc-client/build.gradle
index d89d0922..b5416cb3 100644
--- a/samples/grpc-client/build.gradle
+++ b/samples/grpc-client/build.gradle
@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-client/pom.xml b/samples/grpc-client/pom.xml
index 150687a0..032e1e62 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Client Sample
Demo project for Spring gRPC
@@ -40,7 +40,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
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 09aa3956..f9118c3f 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.0-SNAPSHOT.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.0.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.0-SNAPSHOT"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
.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.0-SNAPSHOT.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.0.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.0-SNAPSHOT"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
.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 b3e6daa6..29d27b9a 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.0-SNAPSHOT.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.0.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.0-SNAPSHOT"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
.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 598858be..66ad39fc 100644
--- a/samples/grpc-oauth2/build.gradle
+++ b/samples/grpc-oauth2/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-oauth2/pom.xml b/samples/grpc-oauth2/pom.xml
index a1f8906a..23eac8c4 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC OAuth2 Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-reactive/build.gradle b/samples/grpc-reactive/build.gradle
index 3ff20263..b59148ab 100644
--- a/samples/grpc-reactive/build.gradle
+++ b/samples/grpc-reactive/build.gradle
@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-reactive/pom.xml b/samples/grpc-reactive/pom.xml
index d3c81009..445eb990 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Reactive Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-secure/build.gradle b/samples/grpc-secure/build.gradle
index 65b0db25..f42a3954 100644
--- a/samples/grpc-secure/build.gradle
+++ b/samples/grpc-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
java {
toolchain {
@@ -24,7 +24,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.0-SNAPSHOT'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.0'
}
}
diff --git a/samples/grpc-secure/pom.xml b/samples/grpc-secure/pom.xml
index 268bd32e..da4db170 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-server-kotlin/HELP-gradle.md b/samples/grpc-server-kotlin/HELP-gradle.md
index 328e7296..45aed230 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.0-SNAPSHOT
+$ docker run --rm grpc-server:1.0.0
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server-kotlin/HELP-maven.md b/samples/grpc-server-kotlin/HELP-maven.md
index a603dd1e..3d94b039 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.0-SNAPSHOT
+$ docker run --rm grpc-server-sample:1.0.0
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server-kotlin/build.gradle b/samples/grpc-server-kotlin/build.gradle
index b51b0eec..4c66f2c2 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.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-server-kotlin/pom.xml b/samples/grpc-server-kotlin/pom.xml
index 45c5167d..3a21361e 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Kotlin Server Sample
Demo project for Spring gRPC
@@ -40,7 +40,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-server-netty-shaded/build.gradle b/samples/grpc-server-netty-shaded/build.gradle
index 30f5cd4a..f62fd3ef 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.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml
index 78faa0dc..65f420e2 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Server Sample Netty Shaded
Demo project for Spring Boot
@@ -25,7 +25,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-server/HELP-gradle.md b/samples/grpc-server/HELP-gradle.md
index 328e7296..45aed230 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.0-SNAPSHOT
+$ docker run --rm grpc-server:1.0.0
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server/HELP-maven.md b/samples/grpc-server/HELP-maven.md
index a603dd1e..3d94b039 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.0-SNAPSHOT
+$ docker run --rm grpc-server-sample:1.0.0
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle
index e6b9d417..230da0da 100644
--- a/samples/grpc-server/build.gradle
+++ b/samples/grpc-server/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml
index 659e80b3..5253692b 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-tomcat-secure/build.gradle b/samples/grpc-tomcat-secure/build.gradle
index 5f803a8d..538af8e5 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.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-tomcat-secure/pom.xml b/samples/grpc-tomcat-secure/pom.xml
index 99842508..1cbbe525 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Tomcat Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-tomcat/build.gradle b/samples/grpc-tomcat/build.gradle
index 5ea55102..9ab27041 100644
--- a/samples/grpc-tomcat/build.gradle
+++ b/samples/grpc-tomcat/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml
index a6c2e09e..da8b0fe1 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Tomcat Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-webflux-secure/build.gradle b/samples/grpc-webflux-secure/build.gradle
index 75664d2b..fa3c3eab 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.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-webflux-secure/pom.xml b/samples/grpc-webflux-secure/pom.xml
index 2cdfaa27..32eb0aec 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Webflux Sample Secure
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/grpc-webflux/build.gradle b/samples/grpc-webflux/build.gradle
index 668b44b1..474cfbad 100644
--- a/samples/grpc-webflux/build.gradle
+++ b/samples/grpc-webflux/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
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.0-SNAPSHOT'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
dependencyManagement {
imports {
diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml
index a5395271..bf2e7d9d 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.0-SNAPSHOT
+ 1.0.0
Spring gRPC Webflux Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
import
diff --git a/samples/pom.xml b/samples/pom.xml
index 467ef468..463811b2 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -6,12 +6,12 @@
org.springframework.grpc
spring-grpc
- 1.0.0-SNAPSHOT
+ 1.0.0
org.springframework.grpc
parent-samples
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
Parent Demo
diff --git a/spring-grpc-build-dependencies/pom.xml b/spring-grpc-build-dependencies/pom.xml
index 668748ec..2800ef45 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.0-SNAPSHOT
+ 1.0.0
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 6bacf34d..5b027b35 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.0-SNAPSHOT
+ 1.0.0
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 19da8406..07d94072 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.0-SNAPSHOT
+ 1.0.0
spring-grpc-client-spring-boot-starter
jar
diff --git a/spring-grpc-core/pom.xml b/spring-grpc-core/pom.xml
index ced674a4..d754375c 100644
--- a/spring-grpc-core/pom.xml
+++ b/spring-grpc-core/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0-SNAPSHOT
+ 1.0.0
spring-grpc-core
jar
diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml
index cd3cb065..a9377c31 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.0-SNAPSHOT
+ 1.0.0
pom
Spring gRPC (Bill of Materials)
diff --git a/spring-grpc-docs/pom.xml b/spring-grpc-docs/pom.xml
index ea5a4eae..af36ab61 100644
--- a/spring-grpc-docs/pom.xml
+++ b/spring-grpc-docs/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0-SNAPSHOT
+ 1.0.0
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 383029ab..d5500025 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.0-SNAPSHOT
+ 1.0.0
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.0-SNAPSHOT")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.0.0")
}
----
diff --git a/spring-grpc-server-spring-boot-autoconfigure/pom.xml b/spring-grpc-server-spring-boot-autoconfigure/pom.xml
index 0f9fd263..647a15c2 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.0-SNAPSHOT
+ 1.0.0
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 4da6586f..c767673e 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.0-SNAPSHOT
+ 1.0.0
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 910755ce..53977574 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.0-SNAPSHOT
+ 1.0.0
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 1b4407ca..2c834ba1 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.0-SNAPSHOT
+ 1.0.0
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 f965b412..3236ac60 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.0-SNAPSHOT
+ 1.0.0
spring-grpc-test-spring-boot-autoconfigure
jar
diff --git a/spring-grpc-test/pom.xml b/spring-grpc-test/pom.xml
index 4b5eec20..51a88bc8 100644
--- a/spring-grpc-test/pom.xml
+++ b/spring-grpc-test/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0-SNAPSHOT
+ 1.0.0
spring-grpc-test
jar