You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BUILD 429B

123456789101112131415
  1. load("@rules_java//java:defs.bzl", "java_library")
  2. package(default_visibility = ["//visibility:public"])
  3. java_library(
  4. name = "jgit-servlet",
  5. srcs = glob(["src/**/*.java"]),
  6. resource_strip_prefix = "org.eclipse.jgit.http.server/resources",
  7. resources = glob(["resources/**"]),
  8. deps = [
  9. "//lib:servlet-api",
  10. # We want these deps to be provided_deps
  11. "//org.eclipse.jgit:jgit",
  12. ],
  13. )