Skip to content

Commit

Permalink
Update plugin org.graalvm.buildtools.native to v0.9.28 (#5793)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jack Berg <[email protected]>
  • Loading branch information
renovate[bot] and jack-berg authored Nov 23, 2023
1 parent ad7fc9e commit 28ff59d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions integration-tests/graal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ dependencies {
implementation(project(path = ":sdk:trace-shaded-deps"))
}

// org.graalvm.buildtools.native pluging requires java 11+ as of version 0.9.26
// https://github.com/graalvm/native-build-tools/blob/master/docs/src/docs/asciidoc/index.adoc
tasks {
withType<JavaCompile>().configureEach {
sourceCompatibility = "11"
targetCompatibility = "11"
options.release.set(11)
}
withType<Test>().configureEach {
val testJavaVersion: String? by project
enabled = !testJavaVersion.equals("8")
}
}

graalvmNative {
binaries {
named("test") {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginManagement {
id("de.undercouch.download") version "5.5.0"
id("org.jsonschema2pojo") version "1.2.1"
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
id("org.graalvm.buildtools.native") version "0.9.25"
id("org.graalvm.buildtools.native") version "0.9.28"
}
}

Expand Down

0 comments on commit 28ff59d

Please sign in to comment.