Skip to content

Commit

Permalink
fix outputting jvm 11 byte code (was emitting jvm 1.6 again)
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed May 11, 2023
1 parent 190609c commit 13b8ad6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -236,13 +236,14 @@ configure(subprojects.filter {
}
}

tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
sourceCompatibility = "11"
targetCompatibility = "11"
allprojects {
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
sourceCompatibility = "11"
targetCompatibility = "11"
}
}


//TODO 1.1.0 re-introduce bcTests again? I am currently not sure if it is actually worth it
// did not have the need to be binary compatible for a while
//val apiProjects = subprojects.filter {
Expand Down

0 comments on commit 13b8ad6

Please sign in to comment.