Files
kotlin-fork/generators/test-generator/build.gradle.kts
T
Alexander Udalov 8695c6a1e4 Extract GenerateCompilerTests out of GenerateTests
Rename the run configuration "Generate Tests" -> "Generate All Tests"
2017-10-31 07:36:46 +01:00

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 {}