e1359a35e1
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
27 lines
588 B
Python
27 lines
588 B
Python
java_library(
|
|
name = "consumer",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@openid-consumer//jar"],
|
|
runtime_deps = [
|
|
":nekohtml",
|
|
":xerces",
|
|
"//lib/guice",
|
|
"//lib/httpcomponents:httpclient",
|
|
"//lib/log:jcl-over-slf4j",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "nekohtml",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@nekohtml//jar"],
|
|
runtime_deps = [":xerces"],
|
|
)
|
|
|
|
java_library(
|
|
name = "xerces",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@xerces//jar"],
|
|
)
|