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
@@ -9,7 +9,10 @@ plugins {
}
dependencies {
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "util", "asm-all", rootProject = rootProject) }
testCompileOnly(intellijDep()) {
includeJars("openapi", "java-api", "extensions", "idea", "idea_rt", "util", "asm-all", rootProject = rootProject)
}
testRuntime(intellijDep())
testCompile(commonDep("junit:junit"))