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 c6c9339 commit e894cecCopy full SHA for e894cec
build-support/build.gradle.kts
@@ -76,13 +76,13 @@ allprojects {
76
}
77
78
tasks.withType<JavaCompile>().configureEach {
79
- sourceCompatibility = JavaVersion.VERSION_11.toString()
80
- targetCompatibility = JavaVersion.VERSION_11.toString()
+ sourceCompatibility = JavaVersion.VERSION_17.toString()
+ targetCompatibility = JavaVersion.VERSION_17.toString()
81
82
83
tasks.withType<KotlinCompile>().configureEach {
84
compilerOptions {
85
- jvmTarget.set(JvmTarget.JVM_11)
+ jvmTarget.set(JvmTarget.JVM_17)
86
freeCompilerArgs.add("-Xjvm-default=all")
87
88
0 commit comments