Bumped Spring Boot version to 3.3.4

This commit is contained in:
Erik C. Thauvin 2024-09-19 10:42:28 -07:00
parent c3202b6cae
commit 54fd1e4edb
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 7 additions and 6 deletions

View file

@ -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"
} }

View file

@ -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) {