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 +}