blob: d83ffea7ac348637271030d962ee300e427c69eb [file]
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() }
}