v0.22.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "contrib_rules_jvm",
sha256 = "cf921053240b90d5f784bd46694f4cfe24879952ebaaafd7f2232c747ad32dcb",
strip_prefix = "rules_jvm-0.22.0",
url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.22.0/rules_jvm-v0.22.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
- Mark dev dependencies as dev dependencies by @illicitonion in #237
- Rename format pipeline by @illicitonion in #238
- Add plugin support to Spotbugs by @mwindmark in #233
rules_jvm_external
version 6 depends onrules_java
by @shs96c in #239- gazelle: Fix java_binary targets in test trees by @illicitonion in #240
- gazelle: Standalone tests depend on their test libraries by @illicitonion in #241
New Contributors
- @mwindmark made their first contribution in #233
Full Changelog: v0.21.4...v0.22.0