Files
gerrit/lib/commons/BUILD
David Pursehouse d4ddf19192 Merge branch 'stable-2.15' into stable-2.16
* stable-2.15:
  config-plugins: Move 'review-strategy' out of the core plugins section
  Bazel: Clean up package visibility settings

Change-Id: Ia29fd049fe241dfbb15bc07a0e7ac2fb31d97c33
2018-12-08 16:22:54 +09:00

57 lines
1.1 KiB
Python

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