blob: 0361ec88c0c2142244179cfbdb2e38cf9a56d659 [file]
plugins {
kotlin("jvm")
}
kotlin {
explicitApiWarning()
}
dependencies {
api(project(":core:compiler.common"))
api(project(":compiler:resolution.common"))
api(project(":compiler:fir:cones"))
api(project(":compiler:fir:tree"))
api(project(":compiler:fir:providers"))
api(project(":compiler:fir:semantics"))
implementation(project(":core:util.runtime"))
compileOnly(libs.guava)
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}