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
46 lines
1015 B
Python
46 lines
1015 B
Python
[java_library(
|
|
name = n,
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@%s//jar" % n],
|
|
) for n in [
|
|
"ant",
|
|
"colt",
|
|
"dev",
|
|
"javax-validation",
|
|
"jsinterop-annotations",
|
|
"tapestry",
|
|
"user",
|
|
"w3c-css-sac",
|
|
]]
|
|
|
|
java_library(
|
|
name = "user-neverlink",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
neverlink = 1,
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@user//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "dev-neverlink",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
neverlink = 1,
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@dev//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "javax-validation_src",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@javax-validation//jar:src"],
|
|
)
|
|
|
|
java_library(
|
|
name = "jsinterop-annotations_src",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jsinterop-annotations//jar:src"],
|
|
)
|