
This is to prepare for implementing genlicenses rule in bazel. Change-Id: I60d79d5b53f9dd05c9f9ebfe6e6f658604c5a037
31 lines
642 B
Python
31 lines
642 B
Python
[java_library(
|
|
name = n,
|
|
exports = ['@%s//jar' % n.replace("-", "_")],
|
|
visibility = ["//visibility:public"],
|
|
data = ['//lib:LICENSE-Apache2.0'],
|
|
) for n in [
|
|
'ant',
|
|
'colt',
|
|
'dev',
|
|
'javax-validation',
|
|
'jsinterop-annotations',
|
|
'tapestry',
|
|
'user',
|
|
'w3c-css-sac',
|
|
]]
|
|
|
|
java_library(
|
|
name = 'javax-validation_src',
|
|
exports = ['@javax_validation_src//jar'],
|
|
visibility = ['//visibility:public'],
|
|
data = ['//lib:LICENSE-Apache2.0'],
|
|
)
|
|
|
|
java_library(
|
|
name = 'jsinterop-annotations_src',
|
|
exports = ['@jsinterop_annotations_src//jar'],
|
|
visibility = ['//visibility:public'],
|
|
data = ['//lib:LICENSE-Apache2.0'],
|
|
)
|
|
|