WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "contrib_rules_jvm",
sha256 = "44c4946567adb9f7218b1eea7ad512e0af7189f66673c3ebe94b484ac5c246a7",
strip_prefix = "rules_jvm-0.29.0",
url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.29.0/rules_jvm-v0.29.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
- chore(gazelle): fix typo encontered -> encountered by @gibfahn in #326
- Add Time Attribute to TestSuite by @amishra-u in #329
- fix: BazelJUnitOutputListener logging xml output on suite-level failures by @amishra-u in #328
- Defer XML output file creation to avoid premature file generation by @amishra-u in #331
- extend package prefixes with ".dev" by @ah-quant in #336
- chore: Avoid modifying deps argument by @honnix in #339
- Use SafeXml to write CData from throwable message by @amishra-u in #341
- [Checkstyle] use better internal names by @tjoneslo in #342
New Contributors
- @amishra-u made their first contribution in #329
- @ah-quant made their first contribution in #336
- @honnix made their first contribution in #339
Full Changelog: v0.28.0...v0.29.0