Skip to content

2.0.0 March 2021 Major Repackaging Release

Compare
Choose a tag to compare
@plaird plaird released this 13 Mar 07:29

This release contains a major repackaging of the Spring Boot rule. This was to comply with the standardized Bazel rule layout conventions. When the Spring Boot rule was originally written, the conventions did not exist. This repackaging makes the rule more modern.

For rule 1.x users, you will need to do the following:

  • All WORKSPACE and BUILD file references to bazel_springboot_rule must be changed to rules_spring
  • All BUILD and .bzl file references to //tools/springboot must be changed to //springboot

See the Repackaging work item for more details.

To use the new release, update your WORKSPACE file with the following:

http_archive(
    name = "rules_spring",
    sha256 = "7d4f12748df340397559decd8348289a6f85ae32dae344545b6d08ad036a9cfe",
    urls = [
        "https://github.com/salesforce/bazel-springboot-rule/releases/download/2.0.0/rules-spring-2.0.0.zip",
    ],
)