Skip to content

0.0.5

Compare
Choose a tag to compare
@github-actions github-actions released this 15 Mar 20:20
· 134 commits to main since this release

Change Log

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.0.5/rules_jdt.tar.gz",
    ],
    sha256 = "a78770f160f55c060181685aa559d3f6557ff80bc3c58d8104cf7e2982eb0aa9",
)
load("@bazel_jdt_java_toolchain//jdt:repositories.bzl", "rules_jdt_dependencies", "rules_jdt_toolchains")
rules_jdt_dependencies()
rules_jdt_toolchains()

Using the rules
Use --extra_toolchains=@bazel_jdt_java_toolchain//jdt:all on the command line (or in .bazelrc) to enable JDT builder with local JDK for compilation.

See the source.