Remove jarjar distribution.
This is part of the PR https://github.com/bazelbuild/bazel/pull/12506 that only affect github files.
Partial commit for third_party/*, see #12555.
Signed-off-by: Philipp Wollermann <philwo@google.com>
diff --git a/third_party/jarjar/BUILD b/third_party/jarjar/BUILD
index c9e4d4a..699e4e6 100644
--- a/third_party/jarjar/BUILD
+++ b/third_party/jarjar/BUILD
@@ -9,14 +9,6 @@
srcs = glob(["**"]),
)
-filegroup(
- name = "embedded_build_and_license",
- srcs = [
- "BUILD.tools",
- "LICENSE",
- ],
-)
-
# jarjar_bin
java_binary(
name = "jarjar_command",
diff --git a/third_party/jarjar/BUILD.tools b/third_party/jarjar/BUILD.tools
deleted file mode 100644
index 3c759aa..0000000
--- a/third_party/jarjar/BUILD.tools
+++ /dev/null
@@ -1,19 +0,0 @@
-package(default_visibility = ["//visibility:public"])
-
-licenses(["notice"]) # Apache 2.0
-
-load(
- "//tools/jdk:remote_java_tools_aliases.bzl",
- "remote_java_tools_java_import",
-)
-
-remote_java_tools_java_import(
- name = "jarjar_import",
- target = ":JarJar",
-)
-
-java_binary(
- name = "jarjar_bin",
- main_class = "com.tonicsystems.jarjar.Main",
- runtime_deps = [":jarjar_import"],
-)