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 554B

12345678910111213141516171819
  1. load("@rules_java//java:defs.bzl", "java_library")
  2. package(default_visibility = ["//visibility:public"])
  3. java_library(
  4. name = "jgit-lfs-server",
  5. srcs = glob(["src/**/*.java"]),
  6. resource_strip_prefix = "org.eclipse.jgit.lfs.server/resources",
  7. resources = glob(["resources/**"]),
  8. deps = [
  9. "//lib:gson",
  10. "//lib:httpcore",
  11. "//lib:servlet-api",
  12. "//lib:slf4j-api",
  13. "//org.eclipse.jgit.http.apache:http-apache",
  14. "//org.eclipse.jgit:jgit",
  15. "//org.eclipse.jgit.lfs:jgit-lfs",
  16. ],
  17. )