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:
Jason Tedor 2018-11-02 11:11:43 -04:00
parent 43cff56aec
commit 1e241190eb
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5
1 changed files with 12 additions and 0 deletions

View File

@ -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 {