Disable assemble task from ILM qa projects
This commit disables the assemble tasks from all ILM qa projects. These projects do not have an assemble task to execute.
This commit is contained in:
parent
43cff56aec
commit
1e241190eb
|
@ -27,6 +27,18 @@ gradle.projectsEvaluated {
|
|||
.each { check.dependsOn it.check }
|
||||
}
|
||||
|
||||
|
||||
/* Remove assemble on all qa projects because we don't need to publish
|
||||
* artifacts for them. */
|
||||
gradle.projectsEvaluated {
|
||||
subprojects {
|
||||
Task assemble = project.tasks.findByName('assemble')
|
||||
if (assemble) {
|
||||
assemble.enabled = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
integTest.enabled = false
|
||||
|
||||
run {
|
||||
|
|
Loading…
Reference in New Issue