Skip to content

Commit

Permalink
Use sourceCompatibility/targetCompatibility instead of toolchains
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheja committed Jan 29, 2023
1 parent eb92ae7 commit 81337b5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ subprojects {
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}
java {
withJavadocJar()
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
publishing {
publications {
Expand Down

0 comments on commit 81337b5

Please sign in to comment.