This commit is contained in:
Erik C. Thauvin 2020-03-02 09:26:17 -08:00
parent 3e37b3cd29
commit 71a911e2ff
5 changed files with 22 additions and 5 deletions

View file

@ -94,6 +94,11 @@ jacoco {
toolVersion = "0.8.3"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sonarqube {
properties {
property("sonar.projectKey", "ethauvin_$name")
@ -122,7 +127,7 @@ tasks {
}
}
withType<KotlinCompile> {
withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "1.8"
}