aboutsummaryrefslogtreecommitdiff
path: root/repositories.bzl
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2018-07-19 13:40:41 -0700
committerEric Anderson <ejona@google.com>2018-07-20 14:03:55 -0700
commit15a5ba2698c1dcbd5ef49402a8e85e48b6653f63 (patch)
treec79dd76f3507df1b31e626d869c5f59834297c43 /repositories.bzl
parent37e6f5f7757899a9026ffa9a72a805ce8179f18e (diff)
downloadgrpc-grpc-java-15a5ba2698c1dcbd5ef49402a8e85e48b6653f63.tar.gz
Remove DoNotMock annotation in favor of JavaDoc
DoNotMock was removed from error_prone_annotations in 2.1.3, because there was no enforcement mechanism (which is in google/error-prone#572). Guava and Trust also depend on error_prone_annotations and are beginning to use newer versions, so our usage of DoNotMock is causing diamond dependency problems. This allows us to update to 2.2.0. The annotations were useful internally; we're solving that in cl/205294089.
Diffstat (limited to 'repositories.bzl')
-rw-r--r--repositories.bzl4
1 files changed, 2 insertions, 2 deletions
diff --git a/repositories.bzl b/repositories.bzl
index 092848a79..105102a5d 100644
--- a/repositories.bzl
+++ b/repositories.bzl
@@ -133,8 +133,8 @@ def com_google_code_gson():
def com_google_errorprone_error_prone_annotations():
native.maven_jar(
name = "com_google_errorprone_error_prone_annotations",
- artifact = "com.google.errorprone:error_prone_annotations:2.1.2",
- sha1 = "6dcc08f90f678ac33e5ef78c3c752b6f59e63e0c",
+ artifact = "com.google.errorprone:error_prone_annotations:2.2.0",
+ sha1 = "88e3c593e9b3586e1c6177f89267da6fc6986f0c",
)
def com_google_guava():