Disable graalvm toolchain detection if GRAALVM_HOME is set
This commit is contained in:
parent
2a1be0bd85
commit
ae221e0447
@ -22,6 +22,13 @@ graalvmNative {
|
||||
this["main"].run {
|
||||
resources.autodetect()
|
||||
configurationFileDirectories.from(file("graalvm-config-dir"))
|
||||
if (System.getenv("GRAALVM_HOME") == null) {
|
||||
javaLauncher.set(javaToolchains.launcherFor {
|
||||
languageVersion.set(JavaLanguageVersion.of(17))
|
||||
})
|
||||
} else {
|
||||
toolchainDetection.set(false)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user