Skip to content

0.1.1

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Mar 13:32
· 103 commits to main since this release
5aef9ec

Bug Fix

  • Newly added ASM dependencies moved into internal namespace (#10)
  • All dependencies moved into WORKSPACE because they are development only dependencies (#12)

WORKSPACE setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazel_jdt_java_toolchain",
    urls = [
        "https://github.com/salesforce/bazel-jdt-java-toolchain/releases/download/0.1.1/rules_jdt-0.1.1.tar.gz",
    ],
    sha256 = "e2cae6eeaf67c081958742b92190dfa31a9ecb469b1ff1abc7b57f2d18771dda",
)
load("@bazel_jdt_java_toolchain//jdt:repositories.bzl", "rules_jdt_dependencies", "rules_jdt_toolchains")
rules_jdt_dependencies()
rules_jdt_toolchains()

Using the rules

See the source.