Skip to content

v0.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Oct 11:02
· 154 commits to main since this release
50427b7

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_jvm",
    sha256 = "eb4e9c2847b3044740e7e74d658381a06411bcba961ec1908dc2737de721238b",
    strip_prefix = "rules_jvm-0.6.0",
    url = "https://github.com/bazel-contrib/rules_jvm/archive/refs/tags/v0.6.0.zip",
)

# Fetches the contrib_rules_jvm dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
load("@contrib_rules_jvm//:repositories.bzl", "contrib_rules_jvm_deps")

contrib_rules_jvm_deps()

# Now ensure that the downloaded deps are properly configured
load("@contrib_rules_jvm//:setup.bzl", "contrib_rules_jvm_setup")

contrib_rules_jvm_setup()

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.6.0