Bumped Spring Boot to version 3.2.5

This commit is contained in:
Erik C. Thauvin 2024-04-18 13:14:21 -07:00
parent b9d7c9edf9
commit 82bfc15521
Signed by: erik
GPG key ID: 776702A6A2DA330E
5 changed files with 16 additions and 14 deletions

View file

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

View file

@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-spring-boot:0.9.3 bld.extensions=com.uwyn.rife2:bld-spring-boot:0.9.4
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadLocation= bld.downloadLocation=
bld.sourceDirectories= bld.sourceDirectories=

View file

@ -27,15 +27,15 @@ public class DemoApplicationBuild 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) {

View file

@ -33,9 +33,10 @@ public class SpringBootBuild extends Project {
public SpringBootBuild() { public SpringBootBuild() {
pkg = "rife.bld.extension"; pkg = "rife.bld.extension";
name = "bld-spring-boot"; name = "bld-spring-boot";
version = version(0, 9, 3); version = version(0, 9, 4);
javaRelease = 17; javaRelease = 17;
downloadSources = true; downloadSources = true;
autoDownloadPurge = true; autoDownloadPurge = true;

View file

@ -128,9 +128,10 @@ class BootJarOperationTest {
org/springframework/boot/loader/zip/CloseableDataBlock.class org/springframework/boot/loader/zip/CloseableDataBlock.class
org/springframework/boot/loader/zip/DataBlock.class org/springframework/boot/loader/zip/DataBlock.class
org/springframework/boot/loader/zip/DataBlockInputStream.class org/springframework/boot/loader/zip/DataBlockInputStream.class
org/springframework/boot/loader/zip/FileChannelDataBlock$ManagedFileChannel.class org/springframework/boot/loader/zip/FileDataBlock$FileAccess.class
org/springframework/boot/loader/zip/FileChannelDataBlock$Tracker.class org/springframework/boot/loader/zip/FileDataBlock$Tracker$1.class
org/springframework/boot/loader/zip/FileChannelDataBlock.class org/springframework/boot/loader/zip/FileDataBlock$Tracker.class
org/springframework/boot/loader/zip/FileDataBlock.class
org/springframework/boot/loader/zip/NameOffsetLookups.class org/springframework/boot/loader/zip/NameOffsetLookups.class
org/springframework/boot/loader/zip/VirtualDataBlock.class org/springframework/boot/loader/zip/VirtualDataBlock.class
org/springframework/boot/loader/zip/VirtualZipDataBlock$DataPart.class org/springframework/boot/loader/zip/VirtualZipDataBlock$DataPart.class
@ -152,9 +153,9 @@ class BootJarOperationTest {
"""; """;
private static final String MAIN_CLASS = "com.example.Foo"; private static final String MAIN_CLASS = "com.example.Foo";
private static final String PROVIDED_LIB = "LatencyUtils-2.0.3.jar"; private static final String PROVIDED_LIB = "LatencyUtils-2.0.3.jar";
private static final String SPRING_BOOT = "spring-boot-3.2.4.jar"; private static final String SPRING_BOOT = "spring-boot-3.2.5.jar";
private static final String SPRING_BOOT_ACTUATOR = "spring-boot-actuator-3.2.4.jar"; private static final String SPRING_BOOT_ACTUATOR = "spring-boot-actuator-3.2.5.jar";
private static final String SPRING_BOOT_LOADER = "spring-boot-loader-3.2.4.jar"; private static final String SPRING_BOOT_LOADER = "spring-boot-loader-3.2.5.jar";
private StringBuilder readJarEntries(File jar) throws IOException { private StringBuilder readJarEntries(File jar) throws IOException {
var jarEntries = new StringBuilder(); var jarEntries = new StringBuilder();