14590310fa
^KT-53097
19 lines
396 B
Kotlin
19 lines
396 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:util"))
|
|
api(project(":compiler:frontend.common"))
|
|
api(project(":compiler:frontend.common-psi"))
|
|
api(project(":compiler:resolution.common.jvm"))
|
|
api(project(":core:compiler.common.jvm"))
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|