This is an automated email from the ASF dual-hosted git repository.
nwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
The following commit(s) were added to refs/heads/master by this push:
new b16973a Updated rules_scala to fix https issue (#3436)
b16973a is described below
commit b16973a7741ac2780202e888b5ada994d5230552
Author: Nicholas Nezis <[email protected]>
AuthorDate: Thu Jan 16 03:04:53 2020 -0500
Updated rules_scala to fix https issue (#3436)
---
WORKSPACE | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/WORKSPACE b/WORKSPACE
index e29118d..b8d7bc6 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -998,14 +998,13 @@ http_archive(
)
# scala integration
-rules_scala_version = "300b4369a0a56d9e590d9fea8a73c3913d758e12" # May 27 -
update this as needed
+rules_scala_version = "358ab829626c6c2d34ec27f856485d3121e299c7" # Jan 15
2020 - update this as needed
http_archive(
name = "io_bazel_rules_scala",
- urls = ["https://github.com/bazelbuild/rules_scala/archive/%s.zip" %
rules_scala_version],
- type = "zip",
strip_prefix = "rules_scala-%s" % rules_scala_version,
- sha256 =
"7f35ee7d96b22f6139b81da3a8ba5fb816e1803ed097f7295b85b7a56e4401c7",
+ type = "zip",
+ url = "https://github.com/bazelbuild/rules_scala/archive/%s.zip" %
rules_scala_version,
)
load("@io_bazel_rules_scala//scala:scala.bzl", "scala_repositories")