From cad4722172f7fc93436d8af0ba9a6eb9b1ba6cd0 Mon Sep 17 00:00:00 2001 From: Michael Ernst Date: Sat, 23 May 2020 14:12:48 -0700 Subject: [PATCH] Use the annotated version of Guava --- annotation-file-utilities/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/annotation-file-utilities/build.gradle b/annotation-file-utilities/build.gradle index 3f274dca9..c6c42b5e1 100644 --- a/annotation-file-utilities/build.gradle +++ b/annotation-file-utilities/build.gradle @@ -55,7 +55,8 @@ dependencies { implementation 'org.plumelib:reflection-util:0.2.2' // Annotations in checker-qual.jar are used, but no checkers are (currently) run on the code. compileOnly 'org.checkerframework:checker-qual:3.4.0' - implementation ('com.google.guava:guava:29.0-jre') { + implementation 'com.google.errorprone:error_prone_annotations:2.3.4' + implementation ('org.checkerframework.annotatedlib:guava:28.2-jre') { // So long as Guava only uses annotations from checker-qual, excluding it should not cause problems. exclude group: 'org.checkerframework' }