summaryrefslogtreecommitdiffstats
path: root/lib/commons/BUILD
blob: 4208ec5a02e7b7d7235eddbdddd6b2ed6c1f64e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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"],
)