JPS Build: fix kotlin-main-kts-test dependency to kotlin-main-kts

This commit is contained in:
Sergey Rostov
2019-04-08 11:51:45 +03:00
parent 5bafd4008f
commit 26a9b2b251
@@ -6,13 +6,17 @@ plugins {
}
dependencies {
testCompile(projectRuntimeJar(":kotlin-main-kts")) // runtimeJar needed to for proper dependency on the jar with relocations
if (!kotlinBuildProperties.isInJpsBuildIdeaSync) {
testCompile(projectRuntimeJar(":kotlin-main-kts")) // runtimeJar needed to for proper dependency on the jar with relocations
}
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"))
}
}