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
This commit is contained in:
parent
d4fce9a068
commit
f9d4589259
|
@ -38,7 +38,7 @@ repositories {
|
|||
}
|
||||
|
||||
tasks.named("bootBuildImage") {
|
||||
environment["BP_JVM_VERSION"] = "24"
|
||||
environment["BP_JVM_VERSION"] = "25"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
Loading…
Reference in New Issue