[FIR] Remove dependency on descriptors from :compiler:fir:raw-fir.raw-fir.common module

This commit is contained in:
Dmitriy Novozhilov
2020-08-17 11:05:25 +03:00
parent 71a517c686
commit b6fd6c3a84
@@ -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
}
}