Build: Fix intellij dependency leak from ir tree module

This commit is contained in:
Vyacheslav Gerasimov
2019-06-02 23:22:50 +03:00
parent 4c91ba90bb
commit 5a39c637c2
38 changed files with 80 additions and 61 deletions
+3 -5
View File
@@ -14,9 +14,9 @@ dependencies {
compile(project(":compiler:fir:tree"))
compile(project(":compiler:ir.tree"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testRuntime(intellijDep())
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) }
testCompile(intellijDep())
testCompile(commonDep("junit:junit"))
testCompileOnly(project(":kotlin-test:kotlin-test-jvm"))
@@ -25,8 +25,6 @@ dependencies {
testCompileOnly(project(":kotlin-reflect-api"))
testRuntime(project(":kotlin-reflect"))
}
sourceSets {