summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHitish Chappidi <hitish@google.com>2019-09-06 17:22:31 +0100
committerHitish Chappidi <hitish@google.com>2019-09-09 11:20:16 +0100
commit0fe21a4db67cbd400688c2fc4bcd202179cfeea1 (patch)
treeded22b010709145565f7f4032f94fa6b1b9e23b2
parent41c37632beeacc6335090609014424a1369aa655 (diff)
downloadapkzlib-0fe21a4db67cbd400688c2fc4bcd202179cfeea1.tar.gz
Update Autovalue to version 1.6.2.
Bug:N/A Test: N/A Change-Id: I779b82409d5fd4fb65e0b41bdfc17299001c3fe9
-rw-r--r--BUILD.bazel6
-rw-r--r--android.sdktools.apkzlib.iml5
-rw-r--r--build.gradle2
3 files changed, 10 insertions, 3 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 0a2b16f..201f72a 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -68,6 +68,7 @@ java_plugin(
processor_class = "com.google.auto.value.processor.AutoValueProcessor",
deps = [
"//tools/base/third_party:com.google.auto.value_auto-value",
+ "//tools/base/third_party:com.google.auto.value_auto-value-annotations",
],
)
@@ -75,5 +76,8 @@ java_plugin(
java_library(
name = "com.google.auto.value_auto-value_neverlink",
neverlink = 1,
- exports = ["//tools/base/third_party:com.google.auto.value_auto-value"],
+ exports = [
+ "//tools/base/third_party:com.google.auto.value_auto-value",
+ "//tools/base/third_party:com.google.auto.value_auto-value-annotations",
+ ],
)
diff --git a/android.sdktools.apkzlib.iml b/android.sdktools.apkzlib.iml
index aa0a9fc..685c948 100644
--- a/android.sdktools.apkzlib.iml
+++ b/android.sdktools.apkzlib.iml
@@ -21,6 +21,7 @@
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
<orderEntry type="module" module-name="android.sdktools.testutils" scope="TEST" />
<orderEntry type="library" scope="TEST" name="truth" level="project" />
- <orderEntry type="library" scope="PROVIDED" name="auto-value-1.5.2" level="project" />
+ <orderEntry type="library" scope="PROVIDED" name="auto-value-1.6.2" level="project" />
+ <orderEntry type="library" scope="PROVIDED" name="auto-value-annotations-1.6.3" level="project" />
</component>
-</module> \ No newline at end of file
+</module>
diff --git a/build.gradle b/build.gradle
index ffd218d..5b3146f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,6 +2,7 @@ apply from: "$rootDir/buildSrc/base/baseJava.gradle"
dependencies {
compileOnly libs.auto_value
+ compileOnly libs.auto_value_annotations
compile 'com.google.code.findbugs:jsr305:1.3.9'
compile 'com.google.guava:guava:23.0'
compile 'org.bouncycastle:bcpkix-jdk15on:1.56'
@@ -10,6 +11,7 @@ dependencies {
compile project(':apksig')
testCompile libs.auto_value
+ testCompile libs.auto_value_annotations
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.7.1'
testAnnotationProcessor libs.auto_value