Skip to content

Commit

Permalink
Fixed tests for Spring Boot 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Dec 21, 2023
1 parent 0aa2080 commit 08b663f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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.0"));
.include(dependency("org.springframeworkboot:spring-boot-loader:3.2.1"));
```

Please check the [BootJarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootJarOperation.html#method-summary)
Expand Down
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 @@ -151,9 +151,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.0.jar";
private static final String SPRING_BOOT_ACTUATOR = "spring-boot-actuator-3.2.0.jar";
private static final String SPRING_BOOT_LOADER = "spring-boot-loader-3.2.0.jar";
private static final String SPRING_BOOT = "spring-boot-3.2.1.jar";
private static final String SPRING_BOOT_ACTUATOR = "spring-boot-actuator-3.2.1.jar";
private static final String SPRING_BOOT_LOADER = "spring-boot-loader-3.2.1.jar";

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

0 comments on commit 08b663f

Please sign in to comment.