Continue switching projects to improved dsl: sourceSets and test running

This commit is contained in:
Ilya Chernikov
2017-08-21 20:53:48 +02:00
parent 336e24b837
commit deda50dbbb
76 changed files with 372 additions and 614 deletions
+9 -6
View File
@@ -5,7 +5,6 @@ apply {
}
dependencies {
val compile by configurations
compile(project(":compiler:frontend"))
compile(project(":idea"))
compile(project(":idea:idea-core"))
@@ -16,9 +15,13 @@ dependencies {
compile(ideaSdkDeps("guava"))
}
configureKotlinProjectSources("android-annotations/src",
"lint-api/src",
"lint-checks/src",
"lint-idea/src")
configureKotlinProjectNoTests()
sourceSets {
"main" {
java.srcDirs("android-annotations/src",
"lint-api/src",
"lint-checks/src",
"lint-idea/src")
}
"test" {}
}