JPS build, workarounds for idea importing: fix runtime classpath

This commit is contained in:
Sergey Rostov
2019-01-10 08:50:08 +03:00
parent 5cda676c9f
commit 62222460b6
2 changed files with 4 additions and 4 deletions
@@ -14,8 +14,8 @@ dependencies {
testCompile(commonDep("junit:junit"))
testRuntime(project(":kotlin-reflect"))
compileOnly(project(":compiler:cli-common")) // TODO: fix import (workaround for jps build)
testCompile(project(":core:util.runtime")) // TODO: fix import (workaround for jps build)
testCompile(project(":compiler:daemon-common")) // TODO: fix import (workaround for jps build)
testCompileOnly(project(":core:util.runtime")) // TODO: fix import (workaround for jps build)
testCompileOnly(project(":compiler:daemon-common")) // TODO: fix import (workaround for jps build)
}
projectTest()