diff options
Diffstat (limited to 'org.eclipse.jgit.http.apache/BUILD')
-rw-r--r-- | org.eclipse.jgit.http.apache/BUILD | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.apache/BUILD b/org.eclipse.jgit.http.apache/BUILD new file mode 100644 index 0000000000..81de40e0f9 --- /dev/null +++ b/org.eclipse.jgit.http.apache/BUILD @@ -0,0 +1,15 @@ +load("@rules_java//java:defs.bzl", "java_library") + +package(default_visibility = ["//visibility:public"]) + +java_library( + name = "http-apache", + srcs = glob(["src/**/*.java"]), + resource_strip_prefix = "org.eclipse.jgit.http.apache/resources", + resources = glob(["resources/**"]), + deps = [ + "//lib:httpclient", + "//lib:httpcore", + "//org.eclipse.jgit:jgit", + ], +) |