Skip to content

Commit f9d4589

Browse files
committed
Use Java 25 in native image system test
We need to use Java 25 when using buildpacks to create a native image for a couple of reasons: - Framework has raised its GraalVM baseline to 25 - Buildpacks have removed support for Java 24 See gh-45501
1 parent d4fce9a commit f9d4589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-nativeApp.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repositories {
3838
}
3939

4040
tasks.named("bootBuildImage") {
41-
environment["BP_JVM_VERSION"] = "24"
41+
environment["BP_JVM_VERSION"] = "25"
4242
}
4343

4444
dependencies {

0 commit comments

Comments
 (0)