Skip to content

Commit ca2fa38

Browse files
committed
Update to Spring Boot RC2
Also updates testjars to 0.4.0.0-RC1 Signed-off-by: onobc <chris.bono@gmail.com>
1 parent 0fad872 commit ca2fa38

File tree

18 files changed

+22
-22
lines changed

18 files changed

+22
-22
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
8181
<java.version>17</java.version>
8282
<!-- internal dependencies -->
83-
<spring-boot.version>4.0.0-SNAPSHOT</spring-boot.version>
83+
<spring-boot.version>4.0.0-RC2</spring-boot.version>
8484
<jackson.version>2.20.0</jackson.version>
8585
<junit.version>5.13.4</junit.version>
8686
<assertj.version>3.27.4</assertj.version>

samples/grpc-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '4.0.0-RC1'
3+
id 'org.springframework.boot' version '4.0.0-RC2'
44
id 'io.spring.dependency-management' version '1.1.7'
55
id 'com.google.protobuf' version '0.9.4'
66
}
@@ -33,7 +33,7 @@ dependencies {
3333
testImplementation 'org.springframework.grpc:spring-grpc-test-spring-boot-autoconfigure'
3434
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3535
testImplementation 'org.springframework.boot:spring-boot-web-server'
36-
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.4.0.0-SNAPSHOT'
36+
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.4.0.0-RC1'
3737
testImplementation 'io.grpc:grpc-inprocess'
3838

3939
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

samples/grpc-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>4.0.0-RC2</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>org.springframework.experimental.boot</groupId>
7373
<artifactId>spring-boot-testjars-maven</artifactId>
74-
<version>0.4.0.0-SNAPSHOT</version>
74+
<version>0.4.0.0-RC1</version>
7575
<scope>test</scope>
7676
</dependency>
7777
<dependency>

samples/grpc-oauth2/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '4.0.0-RC1'
3+
id 'org.springframework.boot' version '4.0.0-RC2'
44
id 'io.spring.dependency-management' version '1.1.7'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'
@@ -38,7 +38,7 @@ dependencies {
3838
testImplementation 'org.springframework.grpc:spring-grpc-test-spring-boot-autoconfigure'
3939
testImplementation 'org.springframework.boot:spring-boot-starter-test'
4040
testImplementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
41-
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.4.0.0-SNAPSHOT'
41+
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.4.0.0-RC1'
4242

4343
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
4444
}

samples/grpc-oauth2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>4.0.0-RC1</version>
9+
<version>4.0.0-RC2</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
@@ -72,7 +72,7 @@
7272
<dependency>
7373
<groupId>org.springframework.experimental.boot</groupId>
7474
<artifactId>spring-boot-testjars-maven</artifactId>
75-
<version>0.4.0.0-SNAPSHOT</version>
75+
<version>0.4.0.0-RC1</version>
7676
<scope>test</scope>
7777
</dependency>
7878
</dependencies>

samples/grpc-reactive/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '4.0.0-RC1'
3+
id 'org.springframework.boot' version '4.0.0-RC2'
44
id 'io.spring.dependency-management' version '1.1.7'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-reactive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>4.0.0-RC2</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-secure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '4.0.0-RC1'
3+
id 'org.springframework.boot' version '4.0.0-RC2'
44
id 'io.spring.dependency-management' version '1.1.7'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-secure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>4.0.0-RC2</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-secure/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void contextLoads() {
5555
}
5656

5757
@Test
58-
@Disabled("Code is coming back PERMISSION_DENIED NOT UNAUTHENTICATED")
58+
@Disabled("Code is coming back PERMISSION_DENIED NOT UNAUTHENTICATED")
5959
void unauthenticated() {
6060
assertThatExceptionOfType(StatusRuntimeException.class)
6161
.isThrownBy(() -> basic.streamHello(HelloRequest.newBuilder().setName("Alien").build()).next())

0 commit comments

Comments
 (0)