Skip to content

v0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 11 May 11:01
· 221 commits to main since this release
bdfec40

Headline Features

  • A Gazelle Java plugin to make generating and maintaining build files for Java projects that little bit nicer!

To Use

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_jvm",
    sha256 = "5d9d466a5756bc4540a03e41afddf8769ea02927ec5efb820cfc551da08ce515",
    strip_prefix = "rules_jvm-0.2.0",
    url = "https://github.com/bazel-contrib/rules_jvm/archive/v0.2.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

New Contributors

Full Changelog: v0.1.0...v0.2.0