-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
19 lines (17 loc) · 869 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
task test {
dependsOn gradle.includedBuild('tests').task(':integration-tests:testDebugUnitTest')
}
task clean {
dependsOn gradle.includedBuild('tests').task(':integration-tests:clean')
dependsOn gradle.includedBuild('plugin').task(':compiler:clean')
dependsOn gradle.includedBuild('plugin').task(':gradle-plugin:clean')
dependsOn gradle.includedBuild('plugin').task(':retrofit-converter:clean')
dependsOn gradle.includedBuild('plugin').task(':runtime:clean')
}
task check {
dependsOn gradle.includedBuild('tests').task(':integration-tests:check')
dependsOn gradle.includedBuild('plugin').task(':compiler:check')
dependsOn gradle.includedBuild('plugin').task(':gradle-plugin:check')
dependsOn gradle.includedBuild('plugin').task(':retrofit-converter:check')
dependsOn gradle.includedBuild('plugin').task(':runtime:check')
}