28 lines
706 B
Kotlin
28 lines
706 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:compiler.common"))
|
|
implementation(project(":compiler:fir:fir-deserialization"))
|
|
|
|
implementation(project(":compiler:serialization"))
|
|
implementation(project(":kotlin-util-klib"))
|
|
implementation(project(":kotlin-util-klib-metadata"))
|
|
|
|
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() }
|
|
}
|