Specify clean task dependencies in gradle script
This commit is contained in:
parent
11a0bd7097
commit
a8a62ddaaa
15
build.gradle
15
build.gradle
|
|
@ -12,9 +12,9 @@ import java.util.regex.*
|
|||
// build.xml file have cyclic dependencies. This needs to be fixed in build
|
||||
// script, and build.xml regenerated.
|
||||
|
||||
//plugins {
|
||||
// plugins {
|
||||
// id "com.dorongold.task-tree" version "1.5"
|
||||
//}
|
||||
// }
|
||||
|
||||
defaultTasks 'assemble'
|
||||
|
||||
|
|
@ -185,6 +185,17 @@ assemble {
|
|||
}
|
||||
}
|
||||
|
||||
clean {
|
||||
dependsOn {
|
||||
[
|
||||
':coderules-clean', ':coderules-cleanSources',
|
||||
':samples:mpscore:mpscore-clean', ':samples:mpscore:mpscore-cleanSources',
|
||||
':samples:lambdacalc:lambdacalc-clean', ':samples:lambdacalc:lambdacalc-cleanSources',
|
||||
':samples:fitch:fitch-clean', ':samples:fitch:fitch-cleanSources'
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
check {
|
||||
dependsOn {
|
||||
[
|
||||
|
|
|
|||
Loading…
Reference in New Issue