Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
honnix committed May 15, 2024
1 parent 969f6c5 commit 5f9e7f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions private/rules/maven_install.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def maven_install(
duplicate_version_warning = "warn",
repin_instructions = None,
ignore_empty_files = False,
resolver_additional_options = []):
coursier_additional_options = []):
"""Resolves and fetches artifacts transitively from Maven repositories.
This macro runs a repository rule that invokes the Coursier CLI to resolve
Expand Down Expand Up @@ -79,7 +79,7 @@ def maven_install(
is "warn".
repin_instructions: Instructions to re-pin dependencies in your repository. Will be shown when re-pinning is required.
ignore_empty_files: Treat jars that are empty as if they were not found.
resolver_additional_options: Additional options that will be passed to the resolver. Only supports `coursier` resolver for now.
coursier_additional_options: Additional options that will be passed to coursier.
"""
if boms and resolver == "coursier":
fail("The coursier resolver does not support resolving Maven BOMs. Please use another resolver.")
Expand Down Expand Up @@ -141,7 +141,7 @@ def maven_install(
aar_import_bzl_label = aar_import_bzl_label,
duplicate_version_warning = duplicate_version_warning,
ignore_empty_files = ignore_empty_files,
additional_options = resolver_additional_options,
additional_options = coursier_additional_options,
)

else:
Expand Down

0 comments on commit 5f9e7f4

Please sign in to comment.