File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff 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
2828tasks {
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
Original file line number Diff line number Diff 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
2626tasks {
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
You can’t perform that action at this time.
0 commit comments