Skip to content

Commit

Permalink
Fix excluded_artifacts for bzlmod (#948)
Browse files Browse the repository at this point in the history
  • Loading branch information
tirsen committed Aug 30, 2023
1 parent 18f894f commit b63a2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion private/extensions/maven.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def _maven_impl(mctx):
))
repo["lock_file"] = install.lock_file

repo["excluded_artifacts"] = _add_exclusions(exclusions, install.excluded_artifacts)
repo["excluded_artifacts"] = repo.get("excluded_artifacts", []) + _add_exclusions(exclusions, install.excluded_artifacts)

_logical_or(repo, "fail_if_repin_required", False, install.fail_if_repin_required)
_logical_or(repo, "fail_on_missing_checksum", False, install.fail_on_missing_checksum)
Expand Down

0 comments on commit b63a2ac

Please sign in to comment.