27 lines
715 B
Kotlin
27 lines
715 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(commonDependency("org.jetbrains.intellij.deps:trove4j"))
|
|
compileOnly(commonDependency("com.google.guava:guava"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|