Skip to content

Commit

Permalink
🐛 Fix compile version to 1.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Sucharda committed Aug 17, 2021
1 parent 5ce364d commit 23075ba
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ tasks.withType<KotlinCompile> {
}
}

tasks.withType<JavaCompile> {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}

tasks.withType<Test> {
useJUnitPlatform()
}
Expand Down

0 comments on commit 23075ba

Please sign in to comment.