31 lines
661 B
Kotlin
31 lines
661 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
configureIntellijPlugin {
|
|
setExtraDependencies("intellij-core")
|
|
}
|
|
|
|
dependencies {
|
|
val compile by configurations
|
|
compile(project(":compiler:cli"))
|
|
compile(project(":compiler:daemon-common"))
|
|
compile(project(":compiler:incremental-compilation-impl"))
|
|
compile(project(":kotlin-build-common"))
|
|
compile(commonDep("org.fusesource.jansi", "jansi"))
|
|
compile(commonDep("org.jline", "jline"))
|
|
}
|
|
|
|
afterEvaluate {
|
|
dependencies {
|
|
compileOnly(intellijCoreJar())
|
|
compileOnly(intellijCoreJarDependencies())
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|