We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6528601 commit 0bd4d7fCopy full SHA for 0bd4d7f
custom-checks/build.gradle.kts
@@ -12,15 +12,15 @@ dependencies {
12
}
13
14
otelJava {
15
- minJavaVersionSupported.set(JavaVersion.VERSION_11)
+ minJavaVersionSupported.set(JavaVersion.VERSION_17)
16
17
18
// We cannot use "--release" javac option here because that will forbid exporting com.sun.tools package.
19
// We also can't seem to use the toolchain without the "--release" option. So disable everything.
20
21
java {
22
- sourceCompatibility = JavaVersion.VERSION_11
23
- targetCompatibility = JavaVersion.VERSION_11
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
24
toolchain {
25
languageVersion.set(null as JavaLanguageVersion?)
26
0 commit comments