caa7bee917
^KT-57835 Fixed
27 lines
729 B
Kotlin
27 lines
729 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:compiler.common"))
|
|
implementation(project(":core:compiler.common.jvm"))
|
|
implementation(project(":core:deserialization.common.jvm"))
|
|
implementation(project(":compiler:fir:fir-deserialization"))
|
|
implementation(project(":compiler:ir.serialization.common"))
|
|
|
|
api(project(":compiler:fir:cones"))
|
|
api(project(":compiler:fir:tree"))
|
|
api(project(":compiler:fir:java"))
|
|
api(project(":compiler:fir:providers"))
|
|
api(project(":compiler:fir:semantics"))
|
|
api(project(":compiler:fir:resolve"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|