Skip to content

Commit

Permalink
Back to JDK 11.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii0lomakin committed Jan 25, 2024
1 parent b3833c7 commit 02bafff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,14 @@ subprojects {

tasks.compileKotlin {
kotlinOptions {
jvmTarget = "17"
jvmTarget = "11"
languageVersion = libs.versions.kotlin.lang.get()
apiVersion = libs.versions.kotlin.lang.get()
}
}
tasks.compileTestKotlin {
kotlinOptions {
jvmTarget = "17"
jvmTarget = "11"
languageVersion = libs.versions.kotlin.lang.get()
apiVersion = libs.versions.kotlin.lang.get()
}
Expand All @@ -177,7 +177,7 @@ subprojects {
withSourcesJar()

toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
languageVersion.set(JavaLanguageVersion.of(11))
}
}

Expand Down

0 comments on commit 02bafff

Please sign in to comment.