60080e8bb8
^KTI-1135 In Progress
26 lines
610 B
Kotlin
26 lines
610 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:descriptors"))
|
|
api(project(":core:descriptors.jvm"))
|
|
api(project(":compiler:util"))
|
|
api(project(":compiler:config.jvm"))
|
|
api("javax.annotation:jsr250-api:1.0")
|
|
api(project(":compiler:frontend"))
|
|
api(project(":compiler:resolution.common.jvm"))
|
|
api(project(":compiler:frontend.common.jvm"))
|
|
|
|
compileOnly(intellijCore())
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
compileOnly(libs.guava)
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|