Bumped Spring Boot version to 3.3.4
This commit is contained in:
parent
c3202b6cae
commit
54fd1e4edb
2 changed files with 7 additions and 6 deletions
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -11,5 +11,6 @@
|
||||||
"java.project.referencedLibraries": [
|
"java.project.referencedLibraries": [
|
||||||
"${HOME}/.bld/dist/bld-2.1.0.jar",
|
"${HOME}/.bld/dist/bld-2.1.0.jar",
|
||||||
"lib/**/*.jar"
|
"lib/**/*.jar"
|
||||||
]
|
],
|
||||||
|
"java.compile.nullAnalysis.mode": "automatic"
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,15 +24,15 @@ public class ApplicationBuild extends WebProject {
|
||||||
repositories = List.of(MAVEN_CENTRAL);
|
repositories = List.of(MAVEN_CENTRAL);
|
||||||
|
|
||||||
scope(compile)
|
scope(compile)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter:3.3.3"))
|
.include(dependency("org.springframework.boot:spring-boot-starter:3.3.4"))
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.3"))
|
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.4"))
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.3"));
|
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.4"));
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.3"))
|
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.4"))
|
||||||
.include(dependency("org.junit.jupiter:junit-jupiter:5.11.0"))
|
.include(dependency("org.junit.jupiter:junit-jupiter:5.11.0"))
|
||||||
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.11.0"));
|
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.11.0"));
|
||||||
scope(standalone)
|
scope(standalone)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-loader:3.3.3"));
|
.include(dependency("org.springframework.boot:spring-boot-loader:3.3.4"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue