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
+2 -6
View File
@@ -20,12 +20,8 @@ dependencies {
compile(project(":kotlin-scripting-compiler-impl"))
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-jdk8")) { isTransitive = false }
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) {
Ide.IJ191.orHigher {
this@compileOnly.includeJars("platform-api")
}
}
compileOnly(intellijDep())
compileOnly(intellijPluginDep("gradle"))
}