Add tests-spec module with basic gradle configuration

This commit is contained in:
victor.petukhov
2018-08-10 17:41:29 +03:00
parent b6575b0c57
commit e989cf2bf4
2 changed files with 18 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testCompile(projectTests(":compiler"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
projectTest {
workingDir = rootDir
}
+1
View File
@@ -132,6 +132,7 @@ include ":kotlin-build-common",
":kotlin-reflect-api",
":kotlin-ant",
":compiler:tests-java8",
":compiler:tests-spec",
":generators",
":generators:test-generator",
":tools:binary-compatibility-validator",