Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
zlib bump
Browse files Browse the repository at this point in the history
  • Loading branch information
abrams27 committed Mar 29, 2022
1 parent fa216dd commit 114fe89
Showing 1 changed file with 7 additions and 21 deletions.
28 changes: 7 additions & 21 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ http_archive(
# ----------------------------------------------------------------------------------------------------------------------
load("@io_bazel_rules_scala//:scala_config.bzl", "scala_config")

scala_config(scala_version = "2.13.8")
scala_config()

# ----------------------------------------------------------------------------------------------------------------------
load("@io_bazel_rules_scala//scala:toolchains.bzl", "scala_register_toolchains")
Expand Down Expand Up @@ -105,16 +105,19 @@ http_archive(
# ======================================================================================================================
# zlib - required by com_google_protobuf

ZLIB_TAG = "1.2.11"
ZLIB_TAG = "1.2.12"

ZLIB_SHA = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1"
ZLIB_SHA = "91844808532e5ce316b3c010929493c0244f3d37593afd6de04f71821d5136d9"

http_archive(
name = "zlib",
build_file = "@com_google_protobuf//:third_party/zlib.BUILD",
sha256 = ZLIB_SHA,
strip_prefix = "zlib-{}".format(ZLIB_TAG),
url = "https://zlib.net/zlib-{}.tar.gz".format(ZLIB_TAG),
urls = [
"http://mirror.tensorflow.org/zlib.net/zlib-{}.tar.gz".format(ZLIB_TAG),
"https://zlib.net/zlib-{}.tar.gz".format(ZLIB_TAG),
],
)

# ======================================================================================================================
Expand Down Expand Up @@ -150,23 +153,6 @@ load("@bazel_sonatype//:defs.bzl", "sonatype_dependencies")

sonatype_dependencies()

# ======================================================================================================================
# junit5

load("//:third_party.bzl", "junit_jupiter_java_repositories", "junit_platform_java_repositories")

JUNIT_JUPITER_VERSION = "5.8.2"

JUNIT_PLATFORM_VERSION = "1.8.2"

junit_jupiter_java_repositories(
version = JUNIT_JUPITER_VERSION,
)

junit_platform_java_repositories(
version = JUNIT_PLATFORM_VERSION,
)

# ======================================================================================================================
# ----------------------------------------------------------------------------------------------------------------------
# ======================================================================================================================
Expand Down

0 comments on commit 114fe89

Please sign in to comment.