Skip to content

Commit

Permalink
chore(java): Full java 17 only
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmcintosh committed Nov 13, 2024
1 parent 83990c6 commit b363828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle/kotlin.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: "kotlin-allopen"
compileKotlin {
kotlinOptions {
languageVersion = "1.6"
jvmTarget = "11"
jvmTarget = "17"
// see https://kotlinlang.org/docs/java-to-kotlin-interop.html#compatibility-mode-for-default-methods
freeCompilerArgs += "-Xjvm-default=enable"
}
Expand All @@ -14,7 +14,7 @@ compileKotlin {
compileTestKotlin {
kotlinOptions {
languageVersion = "1.6"
jvmTarget = "11"
jvmTarget = "17"
freeCompilerArgs += "-Xjvm-default=enable"
}
}

0 comments on commit b363828

Please sign in to comment.