0.1.11
Incompatible Changes
- Update JaCoCo to Bazel 6.4.0
Change Log
commit 6c06fdefe65f4acdbc04c1f172e718db00c0fc22
Author: Roman Salvador <[email protected]>
Date: Mon Nov 6 10:53:25 2023 +0100
Use same jacoco_core that bazel 6.4.0 uses (#20)
commit b266b03136398bdbfc8aa3ef65c067352a2dd3b9
Author: Gunnar Wagenknecht <[email protected]>
Date: Wed Sep 13 17:51:56 2023 +0200
Correction `@bazel_tools//tools/jdk:current_java_runtime` it is
commit 175a059edad5de11777c0c5d5287377772396bd0
Author: Gunnar Wagenknecht <[email protected]>
Date: Wed Sep 13 17:50:49 2023 +0200
Replace `@local_jdk` with
`@bazel_tools//tools/jdk:current_host_java_runtime`
This avoids/removes the dependency on rules_java and gives the end user
is in full control over what is selected via
`--tool_java_runtime_version`.
commit 7fac77d8f2f266ff6a62edaabb0760ff4386c099
Author: Gunnar Wagenknecht <[email protected]>
Date: Wed Sep 6 19:34:30 2023 +0200
buildifier
commit d5aa5016c80beb574345ab40a70472db52405b73
Author: Gunnar Wagenknecht <[email protected]>
Date: Wed Sep 6 18:08:49 2023 +0200
Fix SHA of ASM dependency
commit 1d666ea0d2d82ec5c497d814d2dba2f6373fb656
Author: Gunnar Wagenknecht <[email protected]>
Date: Mon Sep 4 14:09:49 2023 +0200
Add a TODO
commit 4ba15192ff3e958f595b9c094007836190701676
Author: Gunnar Wagenknecht <[email protected]>
Date: Fri Sep 1 17:25:47 2023 +0200
Next development iteration
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.11/rules_jdt-0.1.11.tar.gz",
],
sha256 = "94fc90f16f0bb85acbd81386207170c0b3d64295a9cff7cf9c6a946abd84bf7c",
)
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.