Skip to content

Commit

Permalink
update rules scala to pick up maven to https change (bazelbuild#1375)
Browse files Browse the repository at this point in the history
* update rules scala to pick up maven to https change

* also update maven in this repo in this same PR
  • Loading branch information
nlopezgi authored Jan 15, 2020
1 parent fa5f719 commit 7dfb288
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -281,15 +281,15 @@ jvm_maven_import_external(
artifact = "com.google.guava:guava:18.0",
artifact_sha256 = "d664fbfc03d2e5ce9cab2a44fb01f1d0bf9dfebeccc1a473b1f9ea31f79f6f99",
licenses = ["notice"], # Apache 2.0
server_urls = ["http://central.maven.org/maven2"],
server_urls = ["https://repo1.maven.org/maven2"],
)

# For our scala_image test.
http_archive(
name = "io_bazel_rules_scala",
sha256 = "8566ddc6899d0140a773ffd227d895bc4c79b6def606f131497f95f214df440d",
strip_prefix = "rules_scala-bd0c388125e12f4f173648fc4474f73160a5c628",
urls = ["https://github.com/bazelbuild/rules_scala/archive/bd0c388125e12f4f173648fc4474f73160a5c628.tar.gz"],
sha256 = "b3f980d09b8394ad513a9c126e30f54acba3164e0fd20cffbf57249dbaf8b2a0",
strip_prefix = "rules_scala-2ea8dbad2fee824c68d342d02e48942e2404aaa5",
urls = ["https://github.com/bazelbuild/rules_scala/archive/2ea8dbad2fee824c68d342d02e48942e2404aaa5.tar.gz"],
)

load("@io_bazel_rules_scala//scala:scala.bzl", "scala_repositories")
Expand Down
2 changes: 1 addition & 1 deletion java/image.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def repositories():
name = "javax_servlet_api",
artifact = "javax.servlet:javax.servlet-api:3.0.1",
artifact_sha256 = "377d8bde87ac6bc7f83f27df8e02456d5870bb78c832dac656ceacc28b016e56",
server_urls = ["http://central.maven.org/maven2"],
server_urls = ["https://repo1.maven.org/maven2"],
licenses = ["notice"], # Apache 2.0
)

Expand Down

0 comments on commit 7dfb288

Please sign in to comment.