
This is to prepare for implementing genlicenses rule in bazel. Change-Id: I60d79d5b53f9dd05c9f9ebfe6e6f658604c5a037
23 lines
548 B
Python
23 lines
548 B
Python
java_plugin(
|
|
name = 'auto-annotation-plugin',
|
|
processor_class = 'com.google.auto.value.processor.AutoAnnotationProcessor',
|
|
deps = ['@auto_value//jar'],
|
|
)
|
|
|
|
java_plugin(
|
|
name = 'auto-value-plugin',
|
|
processor_class = 'com.google.auto.value.processor.AutoValueProcessor',
|
|
deps = ['@auto_value//jar'],
|
|
)
|
|
|
|
java_library(
|
|
name = 'auto-value',
|
|
exported_plugins = [
|
|
':auto-annotation-plugin',
|
|
':auto-value-plugin',
|
|
],
|
|
exports = ['@auto_value//jar'],
|
|
visibility = ['//visibility:public'],
|
|
data = ['//lib:LICENSE-Apache2.0'],
|
|
)
|