Skip to content

Commit 9f72874

Browse files
onobcdsyer
authored andcommitted
Update samples to use Spring Boot 4.0.0
Signed-off-by: onobc <chris.bono@gmail.com>
1 parent f2d542d commit 9f72874

File tree

23 files changed

+24
-24
lines changed

23 files changed

+24
-24
lines changed

.github/workflows/check-samples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
matrix:
1212
include:
1313
- javaVersion: 17
14-
springBootVersion: "4.0.0-RC2"
14+
springBootVersion: "4.0.0"
1515
- javaVersion: 17
16-
springBootVersion: "4.0.0-SNAPSHOT"
16+
springBootVersion: "4.0.1-SNAPSHOT"
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4

samples/grpc-client/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-RC2'
3+
id 'org.springframework.boot' version '4.0.0'
44
id 'io.spring.dependency-management' version '1.1.7'
55
id 'com.google.protobuf' version '0.9.4'
66
}

samples/grpc-client/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-RC2</version>
9+
<version>4.0.0</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-oauth2/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-RC2'
3+
id 'org.springframework.boot' version '4.0.0'
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-oauth2/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-RC2</version>
9+
<version>4.0.0</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

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-RC2'
3+
id 'org.springframework.boot' version '4.0.0'
44
id 'io.spring.dependency-management' version '1.1.7'
55
id 'com.google.protobuf' version '0.9.4'
66
}

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-RC2</version>
9+
<version>4.0.0</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-RC2'
3+
id 'org.springframework.boot' version '4.0.0'
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-RC2</version>
9+
<version>4.0.0</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-server-kotlin/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-RC2'
3+
id 'org.springframework.boot' version '4.0.0'
44
id 'io.spring.dependency-management' version '1.1.7'
55
id 'com.google.protobuf' version '0.9.4'
66
id 'org.jetbrains.kotlin.jvm' version '2.2.21'

0 commit comments

Comments
 (0)