Remove dependency of fir:tree:tree-generator on kotlin-reflect

This dependency was unused. It allows to avoid waiting for compiling
kotlin-reflect (which includes descriptors, deserialization, etc.)
before compiling FIR modules and thus improves total build time.
This commit is contained in:
Alexander Udalov
2020-09-14 19:01:51 +02:00
parent 58146c4452
commit f6187b9d64
@@ -26,7 +26,6 @@ dependencies {
Platform[192].orHigher {
runtimeOnly(intellijCoreDep()) { includeJars("jdom") }
}
implementation(project(":kotlin-reflect"))
}
val writeCopyright by task<WriteCopyrightToFile> {