29 lines
692 B
Kotlin
29 lines
692 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:compiler.common.jvm"))
|
|
api(project(":core:metadata.jvm"))
|
|
api(project(":compiler:config.jvm"))
|
|
api(project(":compiler:resolution.common.jvm"))
|
|
api(project(":compiler:frontend.common"))
|
|
api(project(":compiler:frontend.common.jvm"))
|
|
// api(project(":compiler:fir:resolve"))
|
|
api(project(":compiler:fir:resolve"))
|
|
api(project(":compiler:fir:checkers"))
|
|
api(project(":compiler:fir:fir-deserialization"))
|
|
|
|
implementation(project(":core:deserialization.common.jvm"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|