
* stable-2.15: config-plugins: Move 'review-strategy' out of the core plugins section Bazel: Clean up package visibility settings Change-Id: Ia29fd049fe241dfbb15bc07a0e7ac2fb31d97c33
43 lines
1020 B
Python
43 lines
1020 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
java_library(
|
|
name = "fluent-hc",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@fluent-hc//jar"],
|
|
runtime_deps = [":httpclient"],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpclient",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@httpclient//jar"],
|
|
runtime_deps = [
|
|
":httpcore",
|
|
"//lib/commons:codec",
|
|
"//lib/log:jcl-over-slf4j",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpcore",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@httpcore//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpasyncclient",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = [
|
|
"//java/com/google/gerrit/elasticsearch:__pkg__",
|
|
"//javatests/com/google/gerrit/elasticsearch:__pkg__",
|
|
],
|
|
exports = ["@httpasyncclient//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "httpcore-nio",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//java/com/google/gerrit/elasticsearch:__pkg__"],
|
|
exports = ["@httpcore-nio//jar"],
|
|
)
|