FIR IDE: move declaration/package providers to separate module

This commit is contained in:
Ilya Kirillov
2021-08-20 16:36:57 +03:00
parent a54b769ec4
commit abe2311372
36 changed files with 211 additions and 173 deletions
@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
implementation(project(":compiler:psi"))
implementation(project(":compiler:frontend.java"))
implementation(project(":core:compiler.common"))
implementation(intellijCoreDep()) { includeJars("intellij-core", rootProject = rootProject) }
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
kotlin {
explicitApi()
}