12 lines
314 B
Groovy
12 lines
314 B
Groovy
/* Remove assemble on all qa projects because we don't need to publish
|
|
* artifacts for them. */
|
|
subprojects {
|
|
project.tasks.matching { it.name.equals('assemble') }.configureEach {
|
|
enabled = false
|
|
}
|
|
|
|
project.tasks.matching { it.name.equals('dependenciesInfo') }.configureEach {
|
|
enabled = false
|
|
}
|
|
}
|