Skip to content

Commit dc2625c

Browse files
author
Jay Bryant
committed
Upgrade Spring Boot to 3.3.0.
Had to upgrade the Gradle wrapper, too.
1 parent 8e49f69 commit dc2625c

File tree

16 files changed

+418
-280
lines changed

16 files changed

+418
-280
lines changed

complete/configuration-client/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.6.6'
3-
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
2+
id 'org.springframework.boot' version '3.3.0'
3+
id 'io.spring.dependency-management' version '1.1.5'
44
id 'java'
55
}
66

77
group = 'com.example'
88
version = '0.0.1-SNAPSHOT'
9-
sourceCompatibility = '1.8'
9+
sourceCompatibility = '17'
1010

1111
repositories {
1212
mavenCentral()
1313
maven { url 'https://repo.spring.io/milestone' }
1414
}
1515

1616
ext {
17-
set('springCloudVersion', "2021.0.0")
17+
set('springCloudVersion', "2023.0.2")
1818
}
1919

2020
dependencies {

complete/configuration-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.6.6</version>
8+
<version>3.3.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>
@@ -14,8 +14,8 @@
1414
<name>centralized-configuration-client</name>
1515
<description>Demo project for Spring Boot</description>
1616
<properties>
17-
<java.version>1.8</java.version>
18-
<spring-cloud.version>2021.0.0</spring-cloud.version>
17+
<java.version>17</java.version>
18+
<spring-cloud.version>2023.0.2</spring-cloud.version>
1919
</properties>
2020
<dependencies>
2121
<dependency>

complete/configuration-service/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.6.6'
3-
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
2+
id 'org.springframework.boot' version '3.3.0'
3+
id 'io.spring.dependency-management' version '1.1.5'
44
id 'java'
55
}
66

77
group = 'com.example'
88
version = '0.0.1-SNAPSHOT'
9-
sourceCompatibility = '1.8'
9+
sourceCompatibility = '17'
1010

1111
repositories {
1212
mavenCentral()
1313
maven { url 'https://repo.spring.io/milestone' }
1414
}
1515

1616
ext {
17-
set('springCloudVersion', "2021.0.0")
17+
set('springCloudVersion', "2023.0.2")
1818
}
1919

2020
dependencies {

complete/configuration-service/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.6.6</version>
8+
<version>3.3.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>
@@ -14,8 +14,8 @@
1414
<name>centralized-configuration-service</name>
1515
<description>Demo project for Spring Boot</description>
1616
<properties>
17-
<java.version>1.8</java.version>
18-
<spring-cloud.version>2021.0.0</spring-cloud.version>
17+
<java.version>17</java.version>
18+
<spring-cloud.version>2023.0.2</spring-cloud.version>
1919
</properties>
2020
<dependencies>
2121
<dependency>
-15.7 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)