We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f99405 commit 2d5eea6Copy full SHA for 2d5eea6
build.gradle
@@ -399,7 +399,11 @@ tasks.register("buildReleaseArtifacts").configure {
399
group = 'build'
400
description = 'Builds all artifacts required for release manager'
401
402
- dependsOn allprojects.findAll { it.path.startsWith(':distribution:docker') == false && it.path.startsWith(':ml-cpp') == false }
+ dependsOn allprojects.findAll {
403
+ it.path.startsWith(':distribution:docker') == false
404
+ && it.path.startsWith(':ml-cpp') == false
405
+ && it.path.startsWith(':distribution:bwc') == false
406
+ }
407
.collect { GradleUtils.findByName(it.tasks, 'assemble') }
408
.findAll { it != null }
409
}
0 commit comments