232184047b
^KT-53097
23 lines
527 B
Kotlin
23 lines
527 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:metadata.jvm"))
|
|
api(project(":core:deserialization.common"))
|
|
api(project(":core:deserialization.common.jvm"))
|
|
implementation(project(":core:compiler.common.jvm"))
|
|
compileOnly(intellijCore())
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
|
|
implementation(project(":core:descriptors.jvm"))
|
|
api(project(":compiler:psi"))
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|