IR: remove dependency of 'ir.tree' on 'frontend'

This commit is contained in:
Alexander Udalov
2021-02-21 16:02:12 +01:00
parent addabae8d2
commit e69cc183a4
+7 -4
View File
@@ -1,16 +1,19 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
api(project(":core:descriptors"))
api(project(":core:deserialization"))
api(project(":compiler:frontend.common"))
implementation(project(":compiler:util"))
implementation(project(":compiler:config"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
}