Make jvm_import_external.licenses optional.
I don't see why this attribute is required. Particularly since callers can simply pass licenses=[].
Closes #7622.
PiperOrigin-RevId: 237863515
diff --git a/tools/build_defs/repo/jvm.bzl b/tools/build_defs/repo/jvm.bzl
index c3479d2..893921b 100644
--- a/tools/build_defs/repo/jvm.bzl
+++ b/tools/build_defs/repo/jvm.bzl
@@ -203,10 +203,7 @@
jvm_import_external = repository_rule(
attrs = {
"rule_name": attr.string(mandatory = True),
- "licenses": attr.string_list(
- mandatory = True,
- allow_empty = False,
- ),
+ "licenses": attr.string_list(default = ["none"]),
"artifact_urls": attr.string_list(
mandatory = True,
allow_empty = False,