a122cba862
#KT-29405
21 lines
378 B
Kotlin
21 lines
378 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(intellijDep()) { includeJars("util") }
|
|
testCompile(project(":core:util.runtime"))
|
|
testCompile(projectTests(":compiler:tests-common"))
|
|
testCompile(kotlinStdlib())
|
|
testCompile(commonDep("junit:junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|