Skip to content

Commit e021ded

Browse files
committed
bump min java version
1 parent 9a3442b commit e021ded

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

integration-tests/graal-incubating/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ dependencies {
2323
implementation(project(":api:incubator"))
2424
}
2525

26-
// org.graalvm.buildtools.native plugin requires java 11+ as of version 0.9.26
26+
// org.graalvm.buildtools.native plugin requires java 17+ as of version 0.11.1
2727
// https://github.com/graalvm/native-build-tools/blob/master/docs/src/docs/asciidoc/index.adoc
2828
tasks {
2929
withType<JavaCompile>().configureEach {
30-
sourceCompatibility = "11"
31-
targetCompatibility = "11"
32-
options.release.set(11)
30+
sourceCompatibility = "17"
31+
targetCompatibility = "17"
32+
options.release.set(17)
3333
}
3434
withType<Test>().configureEach {
3535
val testJavaVersion: String? by project

integration-tests/graal/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ dependencies {
2121
implementation(project(":exporters:otlp:all"))
2222
}
2323

24-
// org.graalvm.buildtools.native plugin requires java 11+ as of version 0.9.26
24+
// org.graalvm.buildtools.native plugin requires java 17+ as of version 0.11.1
2525
// https://github.com/graalvm/native-build-tools/blob/master/docs/src/docs/asciidoc/index.adoc
2626
tasks {
2727
withType<JavaCompile>().configureEach {
28-
sourceCompatibility = "11"
29-
targetCompatibility = "11"
30-
options.release.set(11)
28+
sourceCompatibility = "17"
29+
targetCompatibility = "17"
30+
options.release.set(17)
3131
}
3232
withType<Test>().configureEach {
3333
val testJavaVersion: String? by project

0 commit comments

Comments
 (0)