c87d29ec16
The upstream jar is now shaded, so direct dependencies are reduced. However, the shaded jar contains un-relocated versions of Apache classes, which need to be stripped out and replaced with our own dependencies. Change-Id: I0f0c481d75d5cc44fb787624b5bd9e88fd79f790
14 lines
432 B
Python
14 lines
432 B
Python
include_defs('//lib/maven.defs')
|
|
|
|
maven_jar(
|
|
name = 'auto-value',
|
|
id = 'com.google.auto.value:auto-value:1.0',
|
|
sha1 = '5d13e60f5d190003176ca6ba4a410fae2e3f6315',
|
|
# Exclude un-relocated dependencies and replace with our own versions; see
|
|
# https://github.com/google/auto/blob/auto-value-1.0/value/pom.xml#L147
|
|
exclude = ['org/apache/*'],
|
|
deps = ['//lib:velocity'],
|
|
license = 'Apache2.0',
|
|
visibility = ['PUBLIC'],
|
|
)
|