v0.26.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "contrib_rules_jvm",
sha256 = "a06555618ed249fdfd8b138505de9f012a98eae4672ef00aa3cfc5f154ade6c7",
strip_prefix = "rules_jvm-0.26.0",
url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.26.0/rules_jvm-v0.26.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 "java.nio.file.InvalidPathException: Illegal char <:> at index 2" by @bartoszpop in #263
- Fix "failed to call RLocation: runfile (...)/Main: file does not exist" by @bartoszpop in #259
- Use path not filepath for package parents by @illicitonion in #264
- Only call rlocation once by @illicitonion in #267
- Shard CI by @illicitonion in #266
- Use an OS-agnostic path separator for the srcs attribute by @bartoszpop in #270
- Rename IsTestPath to IsTestPackage by @illicitonion in #271
- Replace warnings with empty files by @illicitonion in #272
- Update to latest gazelle by @illicitonion in #275
- Shorten path to example file by @illicitonion in #274
- Run CI on Windows by @illicitonion in #268
- gazelle: Populate plugins attributes with annotation processors by @illicitonion in #276
New Contributors
- @bartoszpop made their first contribution in #263
Full Changelog: v0.25.1...v0.26.0