v0.25.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "contrib_rules_jvm",
sha256 = "c525943decefba9d046b3ef3d6e78a6db35f5802cd3a3e3dc4816a323213a885",
strip_prefix = "rules_jvm-0.25.0",
url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.25.0/rules_jvm-v0.25.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
- Fix the JUnit 5 XML output by @tjoneslo in #246
- Represent test timeouts in XML by @tjoneslo in #247
- ClasspathParser: handle null packageName in fullyQualify by @gaurav-narula in #248
- gazelle: Fail on unknown import by @stevebarrau in #254
- lock file for maven in bzlmod by @firov in #252
- Fix SpotBugs config to allow running multiple plugins by @tharakadesilva in #256
New Contributors
- @firov made their first contribution in #252
- @tharakadesilva made their first contribution in #256
Full Changelog: v0.24.0...v0.25.0