Skip to content

v0.20.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Jan 10:32
· 47 commits to main since this release
6aaf031

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_jvm",
    sha256 = "ebbaa80f21373e82a7e074230788a1a2d2db2dc64e153d6b51e8a5285d65d61d",
    strip_prefix = "rules_jvm-0.20.0",
    url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.20.0/rules_jvm-v0.20.0.tar.gz",
)

# 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

  • Clarify this ruleset's relationship to rules_java by @illicitonion in #214
  • Bump the bazel version to 6.4.0 and run the update-dependencies script by @shs96c in #219
  • Rework how the junit xml-style log file is generated by @shs96c in #220
  • junit5: add property to allow SecurityManager override in tests by @rsalvador in #217
  • Implement support for test_suffixes_excludes by @guw in #218
  • junit5: Add support for --test_runner_fail_fast by @fmeum in #221
  • Update go dependencies by @stevebarrau in #216
  • Checkstyle works with generated config files by @illicitonion in #227

New Contributors

Full Changelog: v0.19.0...v0.20.0