| load("@rules_java//java:defs.bzl", "java_library") |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| java_library( |
| name = "codec", |
| data = ["//lib:LICENSE-Apache2.0"], |
| exports = ["@commons-codec//jar"], |
| ) |
| |
| java_library( |
| name = "collections", |
| data = ["//lib:LICENSE-Apache2.0"], |
| exports = ["@commons-collections//jar"], |
| ) |
| |
| java_library( |
| name = "compress", |
| data = ["//lib:LICENSE-Apache2.0"], |
| exports = ["@commons-compress//jar"], |
| ) |
| |
| java_library( |
| name = "io", |
| data = ["//lib:LICENSE-Apache2.0"], |
| exports = ["@commons-io//jar"], |
| ) |
| |
| java_library( |
| name = "lang", |
| data = ["//lib:LICENSE-Apache2.0"], |
| exports = ["@commons-lang//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 = "oro", |
| data = ["//lib:LICENSE-Apache1.1"], |
| exports = ["@commons-oro//jar"], |
| ) |
| |
| java_library( |
| name = "validator", |
| data = ["//lib:LICENSE-Apache2.0"], |
| exports = ["@commons-validator//jar"], |
| ) |