blob: a1e73baa30bc96afa4047fa5af61329bea9d5984 [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":kotlin-annotations-jvm"))
api(project(":core:descriptors"))
api(project(":core:deserialization"))
api(project(":compiler:util"))
api(project(":compiler:config"))
api(project(":compiler:container"))
api(project(":compiler:resolution"))
api(project(":compiler:psi"))
api(project(":compiler:frontend.common"))
api(project(":compiler:frontend.common-psi"))
api(project(":kotlin-script-runtime"))
api(commonDependency("io.javaslang","javaslang"))
compileOnly(intellijCore())
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
compileOnly(commonDependency("com.google.guava:guava"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}