
This is to prepare for implementing genlicenses rule in bazel. Change-Id: I60d79d5b53f9dd05c9f9ebfe6e6f658604c5a037
27 lines
548 B
Python
27 lines
548 B
Python
java_library(
|
|
name = 'consumer',
|
|
exports = ['@openid_consumer//jar'],
|
|
runtime_deps = [
|
|
':nekohtml',
|
|
':xerces',
|
|
'//lib/httpcomponents:httpclient',
|
|
'//lib/log:jcl-over-slf4j',
|
|
'//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'],
|
|
)
|