選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BUILD 377B

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