JS IR: fix circular dependencies in Gradle tasks

This commit is contained in:
Anton Bannykh
2019-10-21 17:40:51 +03:00
parent 651dd363e3
commit a1569dfbf0
2 changed files with 17 additions and 2 deletions
@@ -3,6 +3,7 @@ plugins {
id("jps-compatible")
}
// Please make sure this module doesn't depend on `backend.js` (neither directly, nor transitively)
dependencies {
compile(project(":compiler:ir.psi2ir"))
compile(project(":compiler:ir.serialization.common"))
@@ -12,7 +13,7 @@ dependencies {
testCompile(intellijCoreDep()) { includeJars("intellij-core") }
testCompile(project(":compiler:frontend"))
testCompile(project(":compiler:cli-js"))
testCompile(project(":compiler:cli"))
testCompile(project(":compiler:util"))
testRuntime(project(":kotlin-reflect"))