Move common test parts to tests-common. Minify test jar dependencies

This commit is contained in:
Mikhael Bogdanov
2017-11-27 16:23:13 +01:00
parent acbf53c42e
commit f529069077
43 changed files with 16 additions and 21 deletions
+1 -3
View File
@@ -4,7 +4,7 @@ apply { plugin("kotlin") }
dependencies {
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler"))
testCompile(projectTests(":generators:test-generator"))
}
sourceSets {
@@ -17,8 +17,6 @@ tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
testsJar {}
projectTest {
executable = "${rootProject.extra["JDK_18"]!!}/bin/java"
dependsOnTaskIfExistsRec("dist", project = rootProject)