Skip to content

2.5.0 Dec 2024 Transition to Bzlmod

Compare
Choose a tag to compare
@plaird plaird released this 09 Dec 00:33
· 71 commits to main since this release
168362d

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",
    ],
)