release.gradle : skip for `build` task

This commit is contained in:
Steve Ebersole 2021-10-29 15:55:50 -05:00
parent 46877fdcb4
commit 312fb4355d
1 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,9 @@ configurations {
} }
} }
// skip building this when `build` task is run from root, as many of our CI jobs do
tasks.build.dependsOn.clear()
dependencies { dependencies {
attributesSchema { schema -> attributesSchema { schema ->
schema.attribute(Bundling.BUNDLING_ATTRIBUTE) { matchStrategy -> schema.attribute(Bundling.BUNDLING_ATTRIBUTE) { matchStrategy ->