This release fixes a few issues:
- springboot rule is now preconfigured for multi-arch oci use cases #250 (thanks for report @code-weirdo)
- the JAVABIN environment variable is now a step in the precedence order for finding the JVM for bazel run commands #245
- fixed the springboot rule environment variable name for debug logging (is it now properly upper cased) #148
Bzlmod:
# rules_spring is not in Bazel Central Registry yet, so use the specific commit
bazel_dep(name = "rules_spring", version = "2.6.1")
git_override(
module_name = "rules_spring",
remote = "https://github.com/salesforce/rules_spring",
commit="9342782519d69a12aa92c47e06214802ed3ab265",
)
WORKSPACE:
http_archive(
name = "rules_spring",
sha256 = "98143672b2edd2eb84762a6ebe6afc3a194d1ec06bdfaaf0cc87d4d750476db0",
urls = [
"https://github.com/salesforce/rules_spring/releases/download/2.6.1/rules-spring-2.6.1.zip",
],
)