Bumped Spring Boot to version 3.2.5
This commit is contained in:
parent
6f56865ccf
commit
cb1011bdda
2 changed files with 9 additions and 6 deletions
3
.idea/misc.xml
generated
3
.idea/misc.xml
generated
|
@ -20,6 +20,9 @@
|
||||||
<pattern value="com.example.springboot.ApplicationBuild" method="bootjar" />
|
<pattern value="com.example.springboot.ApplicationBuild" method="bootjar" />
|
||||||
<pattern value="com.example.springboot.ApplicationBuild" method="bootwar" />
|
<pattern value="com.example.springboot.ApplicationBuild" method="bootwar" />
|
||||||
</component>
|
</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">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="17" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/build" />
|
<output url="file://$PROJECT_DIR$/build" />
|
||||||
</component>
|
</component>
|
||||||
|
|
|
@ -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.2.4"))
|
.include(dependency("org.springframework.boot:spring-boot-starter:3.2.5"))
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.4"))
|
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.5"))
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.4"));
|
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.5"));
|
||||||
scope(test)
|
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.jupiter:junit-jupiter:5.10.2"))
|
||||||
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2"));
|
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2"));
|
||||||
scope(standalone)
|
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) {
|
public static void main(String[] args) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue