java_tools with javac11 v5.0
This release:
- Fixes using proguard on other platforms than Linux, Windows or macOs. For more details see bazelbuild/bazel#9116.
- Disables compilation errors for C++ strict toolchains. This affects users of C++ coverage, Java users with remote execution or users that build on other platforms than Linux, Windows or macOs. For more details see bazelbuild/bazel#9069.
- Allows G1 usage in the Java toolchains. For more details see bazelbuild/bazel#8964.
The baseline of this release is commit hash f1bbe586fd305714f5240dfb90fcf8664b22f415
of bazel.
To use this release add to your WORKSPACE file:
http_archive(
name = "remote_java_tools_linux",
sha256 = "b644b1eb3743376ce3aeb0cc6a15374ca5676bf872cc653c3633751c8226e060",
urls = [
"https://mirror.bazel.build/bazel_java_tools/releases/javac11/v5.0/java_tools_javac11_linux-v5.0.zip",
"https://github.com/bazelbuild/java_tools/releases/download/javac11-v5.0/java_tools_javac11_linux-v5.0.zip",
],
)
http_archive(
name = "remote_java_tools_windows",
sha256 = "116fef8a385873bfda5fa76e831959aa0ad0b12ca9a880bd0fc7252413ed7c1f",
urls = [
"https://mirror.bazel.build/bazel_java_tools/releases/javac11/v5.0/java_tools_javac11_windows-v5.0.zip",
"https://github.com/bazelbuild/java_tools/releases/download/javac11-v5.0/java_tools_javac11_windows-v5.0.zip",
],
)
http_archive(
name = "remote_java_tools_darwin",
sha256 = "dfa0e6b6320325eb28023ed754022d985d462b4db468394be305a82f55e7dafa",
urls = [
"https://mirror.bazel.build/bazel_java_tools/releases/javac11/v5.0/java_tools_javac11_darwin-v5.0.zip",
"https://github.com/bazelbuild/java_tools/releases/download/javac11-v5.0/java_tools_javac11_darwin-v5.0.zip",
],
)