22 lines
537 B
Kotlin
22 lines
537 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:compiler.common"))
|
|
api(project(":compiler:resolution.common"))
|
|
api(project(":compiler:fir:cones"))
|
|
api(project(":compiler:fir:tree"))
|
|
api(kotlinxCollectionsImmutable())
|
|
implementation(project(":core:util.runtime"))
|
|
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compileOnly(intellijCoreDep()) { includeJars("guava", rootProject = rootProject) }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|