Remove obsolete workaround for jansi clash issue

This was needed to workaround KT-17031 which is now fixed
This commit is contained in:
Alexander Udalov
2017-11-07 18:21:00 +01:00
parent c519e33a25
commit 4cb8a3a6b7
3 changed files with 0 additions and 13 deletions
-8
View File
@@ -22,17 +22,12 @@ ext.configureJvmProject = { Project project ->
}
tasks.withType(JavaCompile) {
// sourceCompatibility = 1.6
// targetCompatibility = 1.6
options.fork = true
options.forkOptions.javaHome = file(JDK_18)
}
tasks.withType(project.compileKotlin.class) {
kotlinOptions.jdkHome = JDK_18
doFirst {
System.setProperty("kotlin.colors.enabled", "false")
}
}
test {
@@ -61,9 +56,6 @@ ext.configureJvm6Project = { Project project ->
tasks.withType(project.compileKotlin.class) {
kotlinOptions.jdkHome = JDK_16
kotlinOptions.jvmTarget = "1.6"
doFirst {
System.setProperty("kotlin.colors.enabled", "false")
}
}
test {