Skip to content

Commit 3aae925

Browse files
committed
Revert to snapshots
1 parent 88af01e commit 3aae925

36 files changed

Lines changed: 64 additions & 64 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
211211
<dependency>
212212
<groupId>org.springframework.grpc</groupId>
213213
<artifactId>spring-grpc-dependencies</artifactId>
214-
<version>1.1.0-RC1</version>
214+
<version>1.1.0-SNAPSHOT</version>
215215
<type>pom</type>
216216
<scope>import</scope>
217217
</dependency>
@@ -225,7 +225,7 @@ As shown in the snippet below this can then be followed by version-less declarat
225225

226226
```gradle
227227
dependencies {
228-
implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.1.0-RC1")
228+
implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.1.0-SNAPSHOT")
229229
}
230230
```
231231

pom.xml

Lines changed: 1 addition & 1 deletion
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>1.1.0-RC1</version>
8+
<version>1.1.0-SNAPSHOT</version>
99

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

samples/grpc-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

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

1111
def toolchainVersion() {
1212
if (project.hasProperty('testToolchain')) {
@@ -28,7 +28,7 @@ repositories {
2828
maven { url 'https://repo.spring.io/snapshot' }
2929
}
3030

31-
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.1.0-RC1'
31+
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.1.0-SNAPSHOT'
3232

3333
dependencyManagement {
3434
imports {

samples/grpc-client/pom.xml

Lines changed: 2 additions & 2 deletions
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>1.1.0-RC1</version>
14+
<version>1.1.0-SNAPSHOT</version>
1515
<name>Spring gRPC Client 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>1.1.0-RC1</version>
41+
<version>1.1.0-SNAPSHOT</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class DefaultDeadlineSetupTests {
3636
class Deadline {
3737

3838
static boolean serverJarAvailable() {
39-
return new File("../grpc-server/target/grpc-server-sample-1.1.0-RC1.jar").exists();
39+
return new File("../grpc-server/target/grpc-server-sample-1.1.0-SNAPSHOT.jar").exists();
4040
}
4141

4242
@Test
@@ -53,7 +53,7 @@ static class ExtraConfiguration {
5353
static CommonsExecWebServerFactoryBean grpcServer() {
5454
return CommonsExecWebServerFactoryBean.builder()
5555
.classpath(classpath -> classpath
56-
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.1.0-RC1"))
56+
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.1.0-SNAPSHOT"))
5757
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
5858
.files("target/test-classes"));
5959
}
@@ -84,7 +84,7 @@ public CommandLineRunner otherRunner(SimpleGrpc.SimpleBlockingStub stub) {
8484
class WithoutDeadline {
8585

8686
static boolean serverJarAvailable() {
87-
return new File("../grpc-server/target/grpc-server-sample-1.1.0-RC1.jar").exists();
87+
return new File("../grpc-server/target/grpc-server-sample-1.1.0-SNAPSHOT.jar").exists();
8888
}
8989

9090
@Test
@@ -101,7 +101,7 @@ static class ExtraConfiguration {
101101
static CommonsExecWebServerFactoryBean grpcServer() {
102102
return CommonsExecWebServerFactoryBean.builder()
103103
.classpath(classpath -> classpath
104-
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.1.0-RC1"))
104+
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.1.0-SNAPSHOT"))
105105
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
106106
.files("target/test-classes"));
107107
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static void main(String[] args) {
2828
}
2929

3030
static boolean serverJarAvailable() {
31-
return new File("../grpc-server/target/grpc-server-sample-1.1.0-RC1.jar").exists();
31+
return new File("../grpc-server/target/grpc-server-sample-1.1.0-SNAPSHOT.jar").exists();
3232
}
3333

3434
@Test
@@ -44,7 +44,7 @@ static class ExtraConfiguration {
4444
static CommonsExecWebServerFactoryBean grpcServer() {
4545
return CommonsExecWebServerFactoryBean.builder()
4646
.classpath(classpath -> classpath
47-
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.1.0-RC1"))
47+
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.1.0-SNAPSHOT"))
4848
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
4949
.files("target/test-classes"));
5050
}

samples/grpc-oauth2/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

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

1212
def toolchainVersion() {
1313
if (project.hasProperty('testToolchain')) {
@@ -33,7 +33,7 @@ repositories {
3333
maven { url 'https://repo.spring.io/snapshot' }
3434
}
3535

36-
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.1.0-RC1'
36+
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.1.0-SNAPSHOT'
3737

3838
dependencyManagement {
3939
imports {

samples/grpc-oauth2/pom.xml

Lines changed: 2 additions & 2 deletions
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>1.1.0-RC1</version>
14+
<version>1.1.0-SNAPSHOT</version>
1515
<name>Spring gRPC OAuth2 Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>org.springframework.grpc</groupId>
3838
<artifactId>spring-grpc-dependencies</artifactId>
39-
<version>1.1.0-RC1</version>
39+
<version>1.1.0-SNAPSHOT</version>
4040
<type>pom</type>
4141
<scope>import</scope>
4242
</dependency>

samples/grpc-reactive/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

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

1111
def toolchainVersion() {
1212
if (project.hasProperty('testToolchain')) {
@@ -28,7 +28,7 @@ repositories {
2828
maven { url 'https://repo.spring.io/snapshot' }
2929
}
3030

31-
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.1.0-RC1'
31+
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.1.0-SNAPSHOT'
3232

3333
dependencyManagement {
3434
imports {

samples/grpc-reactive/pom.xml

Lines changed: 2 additions & 2 deletions
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>1.1.0-RC1</version>
14+
<version>1.1.0-SNAPSHOT</version>
1515
<name>Spring gRPC Reactive Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>org.springframework.grpc</groupId>
3838
<artifactId>spring-grpc-dependencies</artifactId>
39-
<version>1.1.0-RC1</version>
39+
<version>1.1.0-SNAPSHOT</version>
4040
<type>pom</type>
4141
<scope>import</scope>
4242
</dependency>

0 commit comments

Comments
 (0)