|
@@ -555,11 +555,13 @@ wrapper {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/* Remove assemble/dependenciesInfo on all qa projects because we don't need to publish
|
|
|
- * artifacts for them. */
|
|
|
gradle.projectsEvaluated {
|
|
|
subprojects {
|
|
|
- if (project.path.startsWith(':qa')) {
|
|
|
+ /*
|
|
|
+ * Remove assemble/dependenciesInfo on all qa projects because we don't
|
|
|
+ * need to publish artifacts for them.
|
|
|
+ */
|
|
|
+ if (project.name.equals('qa') || project.path.contains(':qa:')) {
|
|
|
Task assemble = project.tasks.findByName('assemble')
|
|
|
if (assemble) {
|
|
|
assemble.enabled = false
|