26 lines
612 B
Kotlin
26 lines
612 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
repositories {
|
|
maven(url = "https://dl.bintray.com/kotlin/kotlinx")
|
|
}
|
|
|
|
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() }
|
|
}
|