Skip to content

Commit

Permalink
Revert back to JDK 11
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii0lomakin committed Jan 5, 2024
1 parent 48be9a0 commit a52cedf
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 @@ -160,14 +160,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 @@ -178,7 +178,7 @@ subprojects {
withSourcesJar()

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

Expand Down

0 comments on commit a52cedf

Please sign in to comment.