diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index 791d67b678e..790449f23e0 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -22,6 +22,7 @@ dependencies { compile(project(":compiler:frontend.common")) compile(project(":compiler:frontend.java")) compile(project(":compiler:frontend.script")) + compile(project(":compiler:ir.backend.common")) // TODO: fix import (workaround for jps build) compile(project(":js:js.frontend")) compile(project(":js:js.serializer")) compile(project(":compiler:light-classes")) diff --git a/idea/idea-jvm/build.gradle.kts b/idea/idea-jvm/build.gradle.kts index 36d906d5faf..f629a9e4d62 100644 --- a/idea/idea-jvm/build.gradle.kts +++ b/idea/idea-jvm/build.gradle.kts @@ -8,6 +8,7 @@ dependencies { compile(project(":idea")) compile(project(":compiler:light-classes")) compile(project(":compiler:frontend.java")) + compile(project(":compiler:backend.jvm")) // TODO: fix import (workaround for jps build) compileOnly(intellijDep()) compileOnly(commonDep("com.google.code.findbugs", "jsr305"))