@@ -794,7 +794,7 @@ def make_coursier_dep_tree(
794
794
fetch_sources ,
795
795
fetch_javadoc ,
796
796
timeout ,
797
- additional_options ,
797
+ additional_coursier_options ,
798
798
report_progress_prefix = "" ):
799
799
# Set up artifact exclusion, if any. From coursier fetch --help:
800
800
#
@@ -882,7 +882,7 @@ def make_coursier_dep_tree(
882
882
# https://github.com/coursier/coursier/blob/1cbbf39b88ee88944a8d892789680cdb15be4714/modules/paths/src/main/java/coursier/paths/CoursierPaths.java#L29-L56
883
883
environment = {"COURSIER_CACHE" : str (repository_ctx .path (coursier_cache_location ))}
884
884
885
- cmd .extend (additional_options )
885
+ cmd .extend (additional_coursier_options )
886
886
887
887
# Use an argsfile to avoid command line length limits, requires Java version > 8
888
888
java_cmd = cmd [0 ]
@@ -990,7 +990,7 @@ def _coursier_fetch_impl(repository_ctx):
990
990
repository_ctx .attr .fetch_sources ,
991
991
repository_ctx .attr .fetch_javadoc ,
992
992
repository_ctx .attr .resolve_timeout ,
993
- repository_ctx .attr .additional_options ,
993
+ repository_ctx .attr .additional_coursier_options ,
994
994
)
995
995
996
996
files_to_inspect = []
@@ -1432,7 +1432,7 @@ coursier_fetch = repository_rule(
1432
1432
],
1433
1433
),
1434
1434
"ignore_empty_files" : attr .bool (default = False , doc = "Treat jars that are empty as if they were not found." ),
1435
- "additional_options " : attr .string_list (doc = "Additional options that will be passed to coursier." ),
1435
+ "additional_coursier_options " : attr .string_list (doc = "Additional options that will be passed to coursier." ),
1436
1436
},
1437
1437
environ = [
1438
1438
"JAVA_HOME" ,
0 commit comments