2019-02-18 16:16:38 +08:00
|
|
|
/* Remove assemble on all qa projects because we don't need to publish
|
|
|
|
* artifacts for them. */
|
2021-06-23 17:35:47 +08:00
|
|
|
subprojects {
|
|
|
|
project.tasks.matching { it.name.equals('assemble') }.configureEach {
|
|
|
|
enabled = false
|
|
|
|
}
|
2020-11-12 19:04:15 +08:00
|
|
|
|
2021-06-23 17:35:47 +08:00
|
|
|
project.tasks.matching { it.name.equals('dependenciesInfo') }.configureEach {
|
|
|
|
enabled = false
|
2019-02-18 16:16:38 +08:00
|
|
|
}
|
|
|
|
}
|