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 785fbf9 commit 71193e8Copy full SHA for 71193e8
build.gradle.kts
@@ -133,13 +133,15 @@ tasks.publishPlugin {
133
}
134
135
java {
136
- sourceCompatibility = JavaVersion.VERSION_1_8
137
- targetCompatibility = JavaVersion.VERSION_1_8
+ toolchain {
+ languageVersion.set(JavaLanguageVersion.of(11))
138
+ }
139
140
141
tasks.withType<JavaCompile>().configureEach {
142
options.encoding = "UTF-8"
143
options.compilerArgs = listOf("-proc:none")
144
+ options.release.set(8)
145
146
147
tasks.withType<KotlinCompile>().configureEach {
0 commit comments