bazel: add license to appropriate lib/ targets

This is to prepare for implementing genlicenses rule in bazel.

Change-Id: I60d79d5b53f9dd05c9f9ebfe6e6f658604c5a037
This commit is contained in:
Yuxuan 'fishy' Wang
2016-09-24 06:31:27 +08:00
parent 76b1375aa8
commit 75b98f77d9
25 changed files with 160 additions and 11 deletions

View File

@@ -9,15 +9,18 @@ java_library(
'//lib/guice:guice',
],
visibility = ['//visibility:public'],
data = ['//lib:LICENSE-Apache2.0'],
)
java_library(
name = 'nekohtml',
exports = ['@nekohtml//jar'],
runtime_deps = [':xerces'],
data = ['//lib:LICENSE-Apache2.0'],
)
java_library(
name = 'xerces',
exports = ['@xerces//jar'],
data = ['//lib:LICENSE-Apache2.0'],
)