4dcd0d1cb6
Also move deprecated TargetPlatform there. This allows to get rid of the dependency cli.common -> frontend, and even on frontend.common.
26 lines
788 B
Kotlin
26 lines
788 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-annotations-jvm"))
|
|
compile(project(":core:descriptors"))
|
|
compile(project(":core:deserialization"))
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:config"))
|
|
compile(project(":compiler:container"))
|
|
compile(project(":compiler:resolution"))
|
|
compile(project(":compiler:psi"))
|
|
compile(project(":compiler:frontend.common"))
|
|
compile(project(":kotlin-script-runtime"))
|
|
compile(commonDep("io.javaslang","javaslang"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
compileOnly(intellijDep()) { includeJars("trove4j", "guava", rootProject = rootProject) }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|