[FIR] Cleanup dependencies for fir modules

This commit is contained in:
Dmitriy Novozhilov
2020-08-28 15:27:01 +03:00
parent 73e2314f2f
commit 94d58c714a
16 changed files with 69 additions and 56 deletions
+5 -5
View File
@@ -5,12 +5,12 @@ plugins {
}
dependencies {
compile(project(":compiler:frontend.common"))
compile(project(":compiler:frontend.java"))
compile(project(":compiler:fir:resolve"))
compile(project(":compiler:fir:checkers"))
implementation(project(":compiler:fir: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") }
}