Bump Spring Boot to version 3.5.1

This commit is contained in:
Erik C. Thauvin 2025-06-19 08:15:04 -07:00
parent 5869d5ae45
commit 8d02b247dd
Signed by: erik
GPG key ID: 776702A6A2DA330E
4 changed files with 7 additions and 8 deletions

View file

@ -26,7 +26,7 @@ public class DemoApplicationBuild extends WebProject {
repositories = List.of(MAVEN_CENTRAL);
var boot = version(3, 5, 0);
var boot = version(3, 5, 1);
scope(compile)
.include(dependency("org.springframework.boot", "spring-boot-starter", boot))
.include(dependency("org.springframework.boot", "spring-boot-starter-actuator", boot))
@ -34,8 +34,8 @@ public class DemoApplicationBuild extends WebProject {
.include(dependency("org.mockito:mockito-core:5.18.0"));
scope(test)
.include(dependency("org.springframework.boot", "spring-boot-starter-test", boot))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 12, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 12, 2)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 13, 1)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 13, 1)));
scope(standalone)
.include(dependency("org.springframework.boot", "spring-boot-loader", boot));