Minor, remove obsolete jvmTarget modifications in compiler modules

Default JVM target (as well as JDK home) is set to 1.8 for all Gradle
projects in build.gradle.kts:352.
This commit is contained in:
Alexander Udalov
2020-03-14 22:39:38 +01:00
committed by Alexander Udalov
parent f403a0da82
commit aad7354a3b
4 changed files with 0 additions and 21 deletions
-5
View File
@@ -23,11 +23,6 @@ sourceSets {
"test" { projectDefault() }
}
tasks.withType<KotlinCompile> {
kotlinOptions.jdkHome = rootProject.extra["JDK_18"]!!.toString()
kotlinOptions.jvmTarget = "1.8"
}
projectTest(parallel = true) {
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
dependsOn(":dist")