Skip to content

Commit 68a90cf

Browse files
committed
chore: upgrade spring to 4.0.1
1 parent ccf352d commit 68a90cf

File tree

7 files changed

+101
-107
lines changed

7 files changed

+101
-107
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/gradlew text eol=lf
2+
*.bat text eol=crlf
3+
*.jar binary

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.5.5'
3+
id 'org.springframework.boot' version '4.0.1'
44
id 'io.spring.dependency-management' version '1.1.7'
55
}
66

77
group = 'com.example'
88
version = '0.0.1-SNAPSHOT'
9+
description = 'Demo project for Spring Boot'
910

1011
java {
1112
toolchain {
@@ -18,7 +19,7 @@ repositories {
1819
}
1920

2021
dependencies {
21-
implementation 'org.springframework.boot:spring-boot-starter-web'
22+
implementation 'org.springframework.boot:spring-boot-starter'
2223
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2324
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2425
}

gradle/wrapper/gradle-wrapper.jar

1.83 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 93 additions & 94 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
pluginManagement {
2-
repositories {
3-
maven { url = 'https://repo.spring.io/snapshot' }
4-
gradlePluginPortal()
5-
}
6-
}
71
rootProject.name = 'demo'

0 commit comments

Comments
 (0)