Skip to content

Commit

Permalink
Bump down to Java 8 to test builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Grissess committed Dec 18, 2023
1 parent c3805a7 commit a53721c
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 @@ -96,16 +96,16 @@ defaultTasks = mutableListOf("build", "test")

val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
jvmTarget = "17"
jvmTarget = "8"
}
val compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions {
jvmTarget = "17"
jvmTarget = "8"
}

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
languageVersion.set(JavaLanguageVersion.of(8))
}
}

Expand Down

0 comments on commit a53721c

Please sign in to comment.