From 792ecf5b91cd59fa7b7c740fc45d82e02bfadde4 Mon Sep 17 00:00:00 2001 From: James Judd Date: Tue, 7 May 2019 16:17:39 -0600 Subject: [PATCH] Update protobuf to remove warning The older version of protobuf is causing a warning like: An illegal reflective access operation has occurred --- WORKSPACE | 9 ++++++--- tests/WORKSPACE | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index c1dba866..c838646a 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -25,11 +25,14 @@ git_repository( http_archive( name = "com_google_protobuf", - sha256 = "2c8f8614fb1be709d68abaab6b4791682aa7db2048012dd4642d3a50b4f67cb3", - strip_prefix = "protobuf-0038ff49af882463c2af9049356eed7df45c3e8e", - urls = ["https://github.com/google/protobuf/archive/0038ff49af882463c2af9049356eed7df45c3e8e.zip"], + sha256 = "0963c6ae20340ce41f225a99cacbcba8422cebe4f82937f3d9fa3f5dd7ae7342", + strip_prefix = "protobuf-9f604ac5043e9ab127b99420e957504f2149adbe", + urls = ["https://github.com/google/protobuf/archive/9f604ac5043e9ab127b99420e957504f2149adbe.zip"], ) +load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") +protobuf_deps() + http_archive( name = "rules_jvm_external", sha256 = "55e8d3951647ae3dffde22b4f7f8dee11b3f70f3f89424713debd7076197eaca", diff --git a/tests/WORKSPACE b/tests/WORKSPACE index 17f7312b..74972528 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -10,11 +10,14 @@ http_archive( http_archive( name = "com_google_protobuf", - sha256 = "2c8f8614fb1be709d68abaab6b4791682aa7db2048012dd4642d3a50b4f67cb3", - strip_prefix = "protobuf-0038ff49af882463c2af9049356eed7df45c3e8e", - urls = ["https://github.com/google/protobuf/archive/0038ff49af882463c2af9049356eed7df45c3e8e.zip"], + sha256 = "0963c6ae20340ce41f225a99cacbcba8422cebe4f82937f3d9fa3f5dd7ae7342", + strip_prefix = "protobuf-9f604ac5043e9ab127b99420e957504f2149adbe", + urls = ["https://github.com/google/protobuf/archive/9f604ac5043e9ab127b99420e957504f2149adbe.zip"], ) +load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") +protobuf_deps() + local_repository( name = "rules_scala_annex", path = "../",