fe0735cfaa
All the commons-* libraries are defined in lib/commons/BUILD with the exception of commons-io which is in lib/BUILD. Move it to lib/commons/BUILD to make it consistent. Change-Id: If2541eba2a4a9e9b5e7a777940bfce923478808b
73 lines
1.6 KiB
Python
73 lines
1.6 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 = "collections",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-collections//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "compress",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-compress//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "io",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-io//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "lang",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-lang//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 = "oro",
|
|
data = ["//lib:LICENSE-Apache1.1"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-oro//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "validator",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@commons-validator//jar"],
|
|
)
|