f7a9065b75
#KTI-82
22 lines
612 B
Kotlin
22 lines
612 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:resolution.common"))
|
|
api(project(":core:compiler.common.jvm"))
|
|
api(project(":compiler:psi"))
|
|
implementation(project(":compiler:util"))
|
|
implementation(commonDependency("io.javaslang","javaslang"))
|
|
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" {}
|
|
}
|