Skip to content

Commit

Permalink
Bumped Spring Boot to version 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Feb 23, 2024
1 parent 797e290 commit 36c6d18
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Don't forget to include the _Spring Boot Loader_ dependency to your project:

```java
scope(standalone)
.include(dependency("org.springframeworkboot:spring-boot-loader:3.2.2"));
.include(dependency("org.springframeworkboot:spring-boot-loader:3.2.3"));
```

Please check the [BootJarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootJarOperation.html#method-summary)
Expand Down
Binary file modified examples/lib/bld/bld-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-spring-boot:0.9.0
bld.extensions=com.uwyn.rife2:bld-spring-boot:0.9.1
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadLocation=
bld.sourceDirectories=
Expand Down
16 changes: 8 additions & 8 deletions examples/src/bld/java/com/example/demo/DemoApplicationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ public DemoApplicationBuild() {
repositories = List.of(MAVEN_CENTRAL);

scope(compile)
.include(dependency("org.springframework.boot:spring-boot-starter:3.2.2"))
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.2"))
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.2"));
.include(dependency("org.springframework.boot:spring-boot-starter:3.2.3"))
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.2.3"))
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.3"));
scope(test)
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.2"))
.include(dependency("org.junit.jupiter:junit-jupiter:5.10.1"))
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.1"));
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.3"))
.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.2"));
.include(dependency("org.springframework.boot:spring-boot-loader:3.2.3"));
}

public static void main(String[] args) {
Expand Down Expand Up @@ -63,4 +63,4 @@ public void bootwar() throws Exception {
.fromProject(this)
.execute();
}
}
}
6 changes: 3 additions & 3 deletions src/test/java/rife/bld/extension/BootJarOperationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ class BootJarOperationTest {
""";
private static final String MAIN_CLASS = "com.example.Foo";
private static final String PROVIDED_LIB = "LatencyUtils-2.0.3.jar";
private static final String SPRING_BOOT = "spring-boot-3.2.2.jar";
private static final String SPRING_BOOT_ACTUATOR = "spring-boot-actuator-3.2.2.jar";
private static final String SPRING_BOOT_LOADER = "spring-boot-loader-3.2.2.jar";
private static final String SPRING_BOOT = "spring-boot-3.2.3.jar";
private static final String SPRING_BOOT_ACTUATOR = "spring-boot-actuator-3.2.3.jar";
private static final String SPRING_BOOT_LOADER = "spring-boot-loader-3.2.3.jar";

private StringBuilder readJarEntries(File jar) throws IOException {
var jarEntries = new StringBuilder();
Expand Down

0 comments on commit 36c6d18

Please sign in to comment.