Bumped Spring Boot to version 3.2.5

This commit is contained in:
Erik C. Thauvin 2024-04-18 13:24:18 -07:00
parent 6f56865ccf
commit cb1011bdda
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 9 additions and 6 deletions

5
.idea/misc.xml generated
View file

@ -20,7 +20,10 @@
<pattern value="com.example.springboot.ApplicationBuild" method="bootjar" />
<pattern value="com.example.springboot.ApplicationBuild" method="bootwar" />
</component>
<component name="PDMPlugin">
<option name="skipTestSources" value="false" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build" />
</component>
</project>
</project>

View file

@ -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.2.4"))
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.4"))
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.4"));
.include(dependency("org.springframework.boot:spring-boot-starter:3.2.5"))
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.5"))
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.5"));
scope(test)
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.4"))
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.5"))
.include(dependency("org.junit.jupiter:junit-jupiter:5.10.2"))
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2"));
scope(standalone)
.include(dependency("org.springframework.boot:spring-boot-loader:3.2.4"));
.include(dependency("org.springframework.boot:spring-boot-loader:3.2.5"));
}
public static void main(String[] args) {