From ca37cb0028e4e205fb79f670c986442f4f8a2411 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Thu, 20 Jun 2019 02:48:46 +0300 Subject: [PATCH] Build: Remove jps hacks from kotlin-main-kts-test --- libraries/tools/kotlin-main-kts-test/build.gradle.kts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/libraries/tools/kotlin-main-kts-test/build.gradle.kts b/libraries/tools/kotlin-main-kts-test/build.gradle.kts index e8ea6022ce1..9e127e17c9c 100644 --- a/libraries/tools/kotlin-main-kts-test/build.gradle.kts +++ b/libraries/tools/kotlin-main-kts-test/build.gradle.kts @@ -6,18 +6,9 @@ plugins { } dependencies { - if (!kotlinBuildProperties.isInJpsBuildIdeaSync) { - testCompile(projectRuntimeJar(":kotlin-main-kts")) // runtimeJar needed to for proper dependency on the jar with relocations - } - + testCompile(project(":kotlin-main-kts")) testCompile(project(":kotlin-scripting-jvm-host-embeddable")) testCompile(commonDep("junit")) - compileOnly("org.apache.ivy:ivy:2.4.0") // for jps/pill - - if (kotlinBuildProperties.isInJpsBuildIdeaSync) { - testCompile(project(":kotlin-scripting-jvm-host")) - testCompile(project(":kotlin-main-kts")) - } } sourceSets {