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

@ -1,6 +1,6 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="BootOperationTest" type="Application" factoryName="Application" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="rife.bld.extension.BootOperationTest" />
<configuration default="false" name="BootOperationTests" type="Application" factoryName="Application" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="rife.bld.extension.BootOperationTests" />
<module name="app" />
<method v="2">
<option name="Make" enabled="true" />

View file

@ -61,7 +61,7 @@ Don't forget to include the _Spring Boot Loader_ dependency to your project:
```java
scope(standalone)
.include(dependency("org.springframework.boot:spring-boot-loader:3.5.0"));
.include(dependency("org.springframework.boot:spring-boot-loader:3.5.1"));
```
Please check the [BootJarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootJarOperation.html#method-summary)

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));

View file

@ -36,10 +36,9 @@ import java.util.jar.JarFile;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatCode;
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
class BootOperationTests {
private static final String BLD = "bld-2.2.1.jar";
private static final String BOOT_VERSION = "3.5.0";
private static final String BOOT_VERSION = "3.5.1";
private static final String EXAMPLES_LIB_COMPILE = "examples/lib/compile/";
private static final String EXAMPLES_LIB_RUNTIME = "examples/lib/runtime/";
private static final String EXAMPLES_LIB_STANDALONE = "examples/lib/standalone/";