aboutsummaryrefslogtreecommitdiff
path: root/java_grpc_library.bzl
diff options
context:
space:
mode:
authorPaul Gross <pgross@gmail.com>2017-08-11 16:43:08 +0000
committerEric Anderson <ejona@google.com>2017-08-11 16:39:43 -0700
commit72b9ee22b86bb3ea3e78199e183c744567e7761e (patch)
tree1374d838d8c7ec7b5cc834460bc823962b0cdb1a /java_grpc_library.bzl
parent13ef2261d669795205588e292c547dc8ed9c31f7 (diff)
downloadgrpc-grpc-java-72b9ee22b86bb3ea3e78199e183c744567e7761e.tar.gz
all: Fix mismatch in naming Bazel Maven jars
This commit aligns the naming of the Bazel Maven jars with the names used by Bazel's migration-tooling project: https://github.com/bazelbuild/migration-tooling Unfortunately, we can't fix @com_google_protobuf_java because it's required by Bazel itself. Fixes #3328
Diffstat (limited to 'java_grpc_library.bzl')
-rw-r--r--java_grpc_library.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/java_grpc_library.bzl b/java_grpc_library.bzl
index 008457e48..c227e6c92 100644
--- a/java_grpc_library.bzl
+++ b/java_grpc_library.bzl
@@ -110,7 +110,7 @@ def java_grpc_library(name, srcs, deps, flavor=None,
"@grpc_java//core",
"@grpc_java//stub",
"@grpc_java//protobuf",
- "@com_google_guava//jar",
+ "@com_google_guava_guava//jar",
]
if flavor == "normal":
added_deps += ["@com_google_protobuf_java//:protobuf_java"]