From a02242e7b7cdb5ec5c62bc5f7486b5ef6552c9c8 Mon Sep 17 00:00:00 2001 From: Elliotte Harold Date: Fri, 7 Sep 2018 14:18:29 -0400 Subject: [PATCH] Guava 20 --- build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 1e2b47b1b..46d806eaa 100644 --- a/build.gradle +++ b/build.gradle @@ -39,9 +39,10 @@ ext { // Shortcuts for libraries we are using libraries = [ - guava: 'com.google.guava:guava:19.0', + guava: 'com.google.guava:guava:20.0', jsr305: 'com.google.code.findbugs:jsr305:3.0.2', autovalue: 'com.google.auto.value:auto-value:1.1', + error_prone_annotations: 'com.google.errorprone:error_prone_annotations:2.1.3', // Testing junit: 'junit:junit:4.12', @@ -63,7 +64,8 @@ dependencies { compile libraries.guava, libraries.jsr305 - compileOnly libraries.autovalue + compileOnly libraries.autovalue, + libraries.error_prone_annotations testCompile libraries.junit, libraries.mockito,