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
65 lines
1.4 KiB
Python
65 lines
1.4 KiB
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
java_library(
|
|
name = "codec",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-codec//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "compress",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-compress//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "lang",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-lang//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "lang3",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@commons-lang3//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "net",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-net//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "dbcp",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-dbcp//jar"],
|
|
runtime_deps = [":pool"],
|
|
)
|
|
|
|
java_library(
|
|
name = "pool",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-pool//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "validator",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-validator//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "io",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-io//jar"],
|
|
)
|