8695c6a1e4
Rename the run configuration "Generate Tests" -> "Generate All Tests"
20 lines
370 B
Kotlin
20 lines
370 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
testCompile(project(":core:util.runtime"))
|
|
testCompile(projectTests(":compiler:tests-common"))
|
|
testCompile(projectDist(":kotlin-stdlib"))
|
|
testCompile(commonDep("junit:junit"))
|
|
testCompile(ideaSdkDeps("util"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|