aboutsummaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
Diffstat (limited to 'third_party')
-rw-r--r--third_party/classgraph.BUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/classgraph.BUILD b/third_party/classgraph.BUILD
new file mode 100644
index 00000000..2d26caa6
--- /dev/null
+++ b/third_party/classgraph.BUILD
@@ -0,0 +1,10 @@
+load("@rules_java//java:defs.bzl", "java_library")
+
+java_library(
+ name = "classgraph",
+ srcs = glob([
+ "src/main/java/io/github/classgraph/**/*.java",
+ "src/main/java/nonapi/io/github/classgraph/**/*.java",
+ ]),
+ visibility = ["//visibility:public"],
+)