From b6fd6c3a84138ba863e99670493b2ca4c8949bc6 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Mon, 17 Aug 2020 11:05:25 +0300 Subject: [PATCH] [FIR] Remove dependency on descriptors from :compiler:fir:raw-fir.raw-fir.common module --- compiler/fir/raw-fir/raw-fir.common/build.gradle.kts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/compiler/fir/raw-fir/raw-fir.common/build.gradle.kts b/compiler/fir/raw-fir/raw-fir.common/build.gradle.kts index ed723ed8c02..f2ce9f1f3d7 100644 --- a/compiler/fir/raw-fir/raw-fir.common/build.gradle.kts +++ b/compiler/fir/raw-fir/raw-fir.common/build.gradle.kts @@ -9,10 +9,9 @@ plugins { } dependencies { - compile(project(":compiler:psi")) - compile(project(":core:descriptors")) - compile(project(":compiler:fir:tree")) - compile("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.2") + api(project(":compiler:fir:tree")) + api(project(":compiler:psi")) + api("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.2") compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) } @@ -29,4 +28,4 @@ sourceSets { projectTest(parallel = true) { workingDir = rootDir -} \ No newline at end of file +}