Trying to upgrade guava from version 19 to 20 and get this error:
Error:java: cannot access com.google.errorprone.annotations.CanIgnoreReturnValue
class file for com.google.errorprone.annotations.CanIgnoreReturnValue not found
Any ideas how to fix this? I have no links to errorprone in my project. Adding a dependency to errorprone, as shown below, does not help:
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
source
share