Skip to content

Commit 8d02b24

Browse files
committed
Bump Spring Boot to version 3.5.1
1 parent 5869d5a commit 8d02b24

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

.idea/runConfigurations/BootOperationTest.xml renamed to .idea/runConfigurations/BootOperationTests.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Don't forget to include the _Spring Boot Loader_ dependency to your project:
6161

6262
```java
6363
scope(standalone)
64-
.include(dependency("org.springframework.boot:spring-boot-loader:3.5.0"));
64+
.include(dependency("org.springframework.boot:spring-boot-loader:3.5.1"));
6565
```
6666

6767
Please check the [BootJarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootJarOperation.html#method-summary)

examples/src/bld/java/com/example/demo/DemoApplicationBuild.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ public DemoApplicationBuild() {
2626

2727
repositories = List.of(MAVEN_CENTRAL);
2828

29-
var boot = version(3, 5, 0);
29+
var boot = version(3, 5, 1);
3030
scope(compile)
3131
.include(dependency("org.springframework.boot", "spring-boot-starter", boot))
3232
.include(dependency("org.springframework.boot", "spring-boot-starter-actuator", boot))
3333
.include(dependency("org.springframework.boot", "spring-boot-starter-web", boot))
3434
.include(dependency("org.mockito:mockito-core:5.18.0"));
3535
scope(test)
3636
.include(dependency("org.springframework.boot", "spring-boot-starter-test", boot))
37-
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 12, 2)))
38-
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 12, 2)));
37+
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 13, 1)))
38+
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 13, 1)));
3939
scope(standalone)
4040
.include(dependency("org.springframework.boot", "spring-boot-loader", boot));
4141

src/test/java/rife/bld/extension/BootOperationTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,9 @@
3636
import static org.assertj.core.api.Assertions.assertThat;
3737
import static org.assertj.core.api.Assertions.assertThatCode;
3838

39-
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
4039
class BootOperationTests {
4140
private static final String BLD = "bld-2.2.1.jar";
42-
private static final String BOOT_VERSION = "3.5.0";
41+
private static final String BOOT_VERSION = "3.5.1";
4342
private static final String EXAMPLES_LIB_COMPILE = "examples/lib/compile/";
4443
private static final String EXAMPLES_LIB_RUNTIME = "examples/lib/runtime/";
4544
private static final String EXAMPLES_LIB_STANDALONE = "examples/lib/standalone/";

0 commit comments

Comments
 (0)