
Reformat the Bazel build files with the buildifier tool [1]. The style is different for Bazel files. Most notably, indentation level is 4 spaces instead of 2, and " is used instead of '. [1] https://github.com/bazelbuild/buildifier Change-Id: I95c0c6f11b6d76572797853b4ebb5cee5ebd3c98
72 lines
1.6 KiB
Python
72 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 = "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 = "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"],
|
|
)
|