JPS build: workarounds for idea importing

This commit is contained in:
Sergey Rostov
2018-10-22 10:39:38 +03:00
parent ea0cf659b0
commit 423653d225
6 changed files with 19 additions and 2 deletions
@@ -20,6 +20,9 @@ dependencies {
compilerClasspath(project(":kotlin-reflect"))
compilerClasspath(project(":kotlin-stdlib"))
compilerClasspath(project(":kotlin-script-runtime"))
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)
}
projectTest {
@@ -13,6 +13,9 @@ dependencies {
testCompile(project(":kotlin-test:kotlin-test-junit"))
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)
}
projectTest()