diff --git a/compiler/fir/java/build.gradle.kts b/compiler/fir/java/build.gradle.kts index b2b7e85421c..4d6aff73525 100644 --- a/compiler/fir/java/build.gradle.kts +++ b/compiler/fir/java/build.gradle.kts @@ -5,12 +5,14 @@ plugins { } dependencies { + api(project(":core:compiler.common.jvm")) + api(project(":core:metadata.jvm")) + api(project(":compiler:resolution.common.jvm")) api(project(":compiler:frontend.common")) api(project(":compiler:fir:resolve")) api(project(":compiler:fir:checkers")) api(project(":compiler:fir:jvm")) api(project(":compiler:fir:fir-deserialization")) - implementation(project(":compiler:frontend.java")) compileOnly(intellijCoreDep()) { includeJars("intellij-core") } }