2.5.0 Dec 2024 Transition to Bzlmod
Fully transitioned to Bzlmod for workspace dependency management. MODULE.bazel now fully describes the workspace dependencies, and WORKSPACE has been deleted.
NOTE: this release has a bug in the MODULE.bazel file, and is not recommended for use. Use 2.5.1 instead.
If you are just starting your Bzlmod journey, here are some good starting points:
Bzlmod:
# rules_spring is not in Bazel Central Registry yet, so specify the 2.5.0 commit
bazel_dep(name = "rules_spring", version = "2.5.0")
git_override(
module_name = "rules_spring",
remote = "https://github.com/salesforce/rules_spring",
commit="168362d1a70a2f032700f77498aa4d3d863ff144",
)
WORKSPACE:
http_archive(
name = "rules_spring",
sha256 = "5a4f83c892ac072088e4a03d3647c8282f782b097a33bdb01723c63ae930311d",
urls = [
"https://github.com/salesforce/rules_spring/releases/download/2.5.0/rules-spring-2.5.0.zip",
],
)