mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
28 lines
550 B
Kotlin
28 lines
550 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:backend"))
|
|
compile(project(":idea:idea-core"))
|
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
|
|
|
// TODO: get rid of this
|
|
compile(project(":idea:jvm-debugger:eval4j"))
|
|
|
|
compile(toolsJar())
|
|
|
|
Platform[192].orHigher {
|
|
compileOnly(intellijPluginDep("java"))
|
|
}
|
|
|
|
compileOnly(intellijDep())
|
|
|
|
testCompile(commonDep("junit:junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
} |