Skip to content

Commit c357502

Browse files
committed
Bump to 0.7.0
1 parent 3e7c64c commit c357502

File tree

34 files changed

+60
-60
lines changed

34 files changed

+60
-60
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
201201
<dependency>
202202
<groupId>org.springframework.grpc</groupId>
203203
<artifactId>spring-grpc-dependencies</artifactId>
204-
<version>0.7.0-SNAPSHOT-SNAPSHOT</version>
204+
<version>0.7.0-SNAPSHOT</version>
205205
<type>pom</type>
206206
<scope>import</scope>
207207
</dependency>
@@ -215,7 +215,7 @@ As shown in the snippet below this can then be followed by version-less declarat
215215

216216
```gradle
217217
dependencies {
218-
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT-SNAPSHOT")
218+
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT")
219219
}
220220
```
221221

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.springframework.grpc</groupId>
77
<artifactId>spring-grpc</artifactId>
8-
<version>0.7.0-SNAPSHOT</version>
8+
<version>0.7.0</version>
99

1010
<packaging>pom</packaging>
1111
<url>https://github.com/spring-projects-experimental/spring-grpc</url>

samples/grpc-client/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'com.example'
9-
version = '0.7.0-SNAPSHOT'
9+
version = '0.7.0'
1010

1111
java {
1212
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

samples/grpc-client/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-client-sample</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC Client Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>org.springframework.grpc</groupId>
4242
<artifactId>spring-grpc-dependencies</artifactId>
43-
<version>0.7.0-SNAPSHOT</version>
43+
<version>0.7.0</version>
4444
<type>pom</type>
4545
<scope>import</scope>
4646
</dependency>

samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class DefaultDeadlineSetupTests {
3535
class Deadline {
3636

3737
static boolean serverJarAvailable() {
38-
return new File("../grpc-server/target/grpc-server-sample-0.7.0-SNAPSHOT.jar").exists();
38+
return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
3939
}
4040

4141
@Test
@@ -52,7 +52,7 @@ static class ExtraConfiguration {
5252
static CommonsExecWebServerFactoryBean grpcServer() {
5353
return CommonsExecWebServerFactoryBean.builder()
5454
.classpath(classpath -> classpath
55-
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0-SNAPSHOT"))
55+
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
5656
.files("target/test-classes"));
5757
}
5858

@@ -83,7 +83,7 @@ public CommandLineRunner otherRunner(SimpleGrpc.SimpleBlockingStub stub) {
8383
class WithoutDeadline {
8484

8585
static boolean serverJarAvailable() {
86-
return new File("../grpc-server/target/grpc-server-sample-0.7.0-SNAPSHOT.jar").exists();
86+
return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
8787
}
8888

8989
@Test
@@ -100,7 +100,7 @@ static class ExtraConfiguration {
100100
static CommonsExecWebServerFactoryBean grpcServer() {
101101
return CommonsExecWebServerFactoryBean.builder()
102102
.classpath(classpath -> classpath
103-
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0-SNAPSHOT"))
103+
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
104104
.files("target/test-classes"));
105105
}
106106

samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static void main(String[] args) {
2626
}
2727

2828
static boolean serverJarAvailable() {
29-
return new File("../grpc-server/target/grpc-server-sample-0.7.0-SNAPSHOT.jar").exists();
29+
return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
3030
}
3131

3232
@Test
@@ -42,7 +42,7 @@ static class ExtraConfiguration {
4242
static CommonsExecWebServerFactoryBean grpcServer() {
4343
return CommonsExecWebServerFactoryBean.builder()
4444
.classpath(classpath -> classpath
45-
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0-SNAPSHOT"))
45+
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
4646
.files("target/test-classes"));
4747
}
4848

samples/grpc-oauth2/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -27,7 +27,7 @@ repositories {
2727

2828
dependencyManagement {
2929
imports {
30-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
30+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
3131
}
3232
}
3333

samples/grpc-oauth2/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-oauth2-sample</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC OAuth2 Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.7.0-SNAPSHOT</version>
41+
<version>0.7.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-reactive/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

samples/grpc-reactive/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-reactive-sample</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC Reactive Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.7.0-SNAPSHOT</version>
41+
<version>0.7.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-secure/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

samples/grpc-secure/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-secure-sample</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC Secure Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.7.0-SNAPSHOT</version>
41+
<version>0.7.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-server-netty-shaded/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

samples/grpc-server-netty-shaded/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>com.example</groupId>
1313
<artifactId>grpc-server-netty-shaded</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC Server Sample Netty Shaded</name>
1616
<description>Demo project for Spring Boot</description>
1717
<properties>
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>org.springframework.grpc</groupId>
2727
<artifactId>spring-grpc-dependencies</artifactId>
28-
<version>0.7.0-SNAPSHOT</version>
28+
<version>0.7.0</version>
2929
<type>pom</type>
3030
<scope>import</scope>
3131
</dependency>

samples/grpc-server/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

samples/grpc-server/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-server-sample</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.7.0-SNAPSHOT</version>
41+
<version>0.7.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-tomcat-secure/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

samples/grpc-tomcat-secure/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-tomcat-secure-sample</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC Tomcat Secure Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.7.0-SNAPSHOT</version>
41+
<version>0.7.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>
@@ -51,7 +51,7 @@
5151
</dependency>
5252
<dependency>
5353
<groupId>org.springframework.boot</groupId>
54-
<artifactId>spring-boot-starter-security</artifactId>
54+
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
5555
</dependency>
5656
<dependency>
5757
<groupId>io.grpc</groupId>

samples/grpc-tomcat/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

samples/grpc-tomcat/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-tomcat-sample</artifactId>
14-
<version>0.7.0-SNAPSHOT</version>
14+
<version>0.7.0</version>
1515
<name>Spring gRPC Tomcat Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.7.0-SNAPSHOT</version>
41+
<version>0.7.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-webflux/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.7.0-SNAPSHOT'
10+
version = '0.7.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
2727
}
2828
}
2929

0 commit comments

Comments
 (0)