f98a60b35f
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
48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
java_library(
|
|
name = "fluent-hc",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@fluent-hc//jar"],
|
|
runtime_deps = [":httpclient"],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpclient",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@httpclient//jar"],
|
|
runtime_deps = [
|
|
":httpcore",
|
|
"//lib/commons:codec",
|
|
"//lib/log:jcl-over-slf4j",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpcore",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@httpcore//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpmime",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@httpmime//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpasyncclient",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@httpasyncclient//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpcore-nio",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@httpcore-nio//jar"],
|
|
)
|