From f8b49fb64bed8d4a3de190ec9a614a433094d6a5 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Thu, 22 Aug 2024 19:00:47 -0700 Subject: [PATCH] Bumped Spring Boot 3.3.3 --- .idea/bld.xml | 6 ++++++ .../com/example/springboot/ApplicationBuild.java | 14 +++++++------- 2 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 .idea/bld.xml diff --git a/.idea/bld.xml b/.idea/bld.xml new file mode 100644 index 0000000..6600cee --- /dev/null +++ b/.idea/bld.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/bld/java/com/example/springboot/ApplicationBuild.java b/src/bld/java/com/example/springboot/ApplicationBuild.java index 75adae6..5c66191 100644 --- a/src/bld/java/com/example/springboot/ApplicationBuild.java +++ b/src/bld/java/com/example/springboot/ApplicationBuild.java @@ -24,15 +24,15 @@ public class ApplicationBuild extends WebProject { repositories = List.of(MAVEN_CENTRAL); scope(compile) - .include(dependency("org.springframework.boot:spring-boot-starter:3.3.2")) - .include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.2")) - .include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.2")); + .include(dependency("org.springframework.boot:spring-boot-starter:3.3.3")) + .include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.3")) + .include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.3")); scope(test) - .include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.2")) - .include(dependency("org.junit.jupiter:junit-jupiter:5.10.3")) - .include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.3")); + .include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.3")) + .include(dependency("org.junit.jupiter:junit-jupiter:5.11.0")) + .include(dependency("org.junit.platform:junit-platform-console-standalone:1.11.0")); scope(standalone) - .include(dependency("org.springframework.boot:spring-boot-loader:3.3.2")); + .include(dependency("org.springframework.boot:spring-boot-loader:3.3.3")); } public static void main(String[] args) {