aboutsummaryrefslogtreecommitdiff
path: root/repositories.bzl
diff options
context:
space:
mode:
authorShohei Kamimori <jyane.kstm@gmail.com>2018-01-09 08:11:20 +0900
committerZHANG Dapeng <zdapeng@google.com>2018-01-08 15:11:20 -0800
commit3b93fd44bdccbd97f46de2d53d8f449b72f0dc66 (patch)
tree708c08b71dc1932aaa312b0e1add0b38111444f8 /repositories.bzl
parent35a6bf863d3eb6d169170d46f64357e3a768b3dd (diff)
downloadgrpc-grpc-java-3b93fd44bdccbd97f46de2d53d8f449b72f0dc66.tar.gz
bazel: fix protobuf sha256
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 717446d99..00c4e1942 100644
--- a/repositories.bzl
+++ b/repositories.bzl
@@ -138,7 +138,7 @@ def com_google_protobuf():
# This statement defines the @com_google_protobuf repo.
native.http_archive(
name = "com_google_protobuf",
- sha256 = "cef7f1b5a7c5fba672bec2a319246e8feba471f04dcebfe362d55930ee7c1c30",
+ sha256 = "1f8b9b202e9a4e467ff0b0f25facb1642727cdf5e69092038f15b37c75b99e45",
strip_prefix = "protobuf-3.5.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.zip"],
)
@@ -148,7 +148,7 @@ def com_google_protobuf_java():
# which is the Java proto runtime (base classes and common utilities).
native.http_archive(
name = "com_google_protobuf_java",
- sha256 = "cef7f1b5a7c5fba672bec2a319246e8feba471f04dcebfe362d55930ee7c1c30",
+ sha256 = "1f8b9b202e9a4e467ff0b0f25facb1642727cdf5e69092038f15b37c75b99e45",
strip_prefix = "protobuf-3.5.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.zip"],
)