From 46d616641f568dfd4eea69bca2d0d95f9e533726 Mon Sep 17 00:00:00 2001 From: Sergey Rostov Date: Wed, 23 Jan 2019 16:59:45 +0300 Subject: [PATCH] JPS build workarounds for gradle import --- idea/build.gradle.kts | 1 + idea/idea-jvm/build.gradle.kts | 1 + 2 files changed, 2 insertions(+) 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"))