You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: private/extensions/maven.bzl
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,9 @@ install = tag_class(
75
75
76
76
# Configuration "stuff"
77
77
"additional_netrc_lines": attr.string_list(doc="Additional lines prepended to the netrc file used by `http_file` (with `maven_install_json` only).", default= []),
78
+
"truststore": attr.label(allow_single_file=True, doc="Optional Java truststore file to use for Maven resolution."),
79
+
"truststore_password": attr.label(allow_single_file=True, doc="Optional Java truststore password file for Maven resolution."),
80
+
"truststore_type": attr.string(doc="Optional Java truststore type (for example, JKS or PKCS12) for Maven resolution."),
78
81
"use_credentials_from_home_netrc_file": attr.bool(doc="Whether to pass machine login credentials from the ~/.netrc file to coursier.", default=False),
79
82
"duplicate_version_warning": attr.string(
80
83
doc="""What to do if there are duplicate artifacts
0 commit comments