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
-4
View File
@@ -459,7 +459,6 @@ fun jdkPath(version: String): String = jdkPathIfFound(version)
?: throw GradleException ("Please set environment variable JDK_${version.replace(".", "")} to point to JDK $version installation")
fun Project.configureJvmProject(javaHome: String, javaVersion: String) {
tasks.withType<JavaCompile> {
options.isFork = true
options.forkOptions.javaHome = file(javaHome)
@@ -470,9 +469,6 @@ fun Project.configureJvmProject(javaHome: String, javaVersion: String) {
tasks.withType<KotlinCompile> {
kotlinOptions.jdkHome = javaHome
kotlinOptions.jvmTarget = javaVersion
doFirst {
System.setProperty("kotlin.colors.enabled", "false")
}
}
tasks.withType<Test> {