Bazel: Harmonize names of external repositories Recent Bazel versions support dash character in external repository names. Consistently use them with one exception: javax_inject. This is needed to match the name in the rules_closure. Change-Id: I1e75690fe1ee2ab32fffe07c0c30dbed84753960
diff --git a/lib/httpcomponents/BUILD b/lib/httpcomponents/BUILD index 6e8fcd8..8e9fbc5 100644 --- a/lib/httpcomponents/BUILD +++ b/lib/httpcomponents/BUILD
@@ -4,7 +4,7 @@ name = "fluent-hc", data = ["//lib:LICENSE-Apache2.0"], visibility = ["//visibility:public"], - exports = ["@fluent_hc//jar"], + exports = ["@fluent-hc//jar"], runtime_deps = [":httpclient"], ) @@ -43,5 +43,5 @@ java_library( name = "httpcore-nio", data = ["//lib:LICENSE-Apache2.0"], - exports = ["@httpcore_nio//jar"], + exports = ["@httpcore-nio//jar"], )