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

12345678910111213141516171819202122232425
  1. package(default_visibility = ["//visibility:public"])
  2. genrule(
  3. name = "all",
  4. testonly = 1,
  5. srcs = [
  6. "//org.eclipse.jgit:jgit",
  7. "//org.eclipse.jgit.pgm:pgm",
  8. "//org.eclipse.jgit.ui:ui",
  9. "//org.eclipse.jgit.archive:jgit-archive",
  10. "//org.eclipse.jgit.http.apache:http-apache",
  11. "//org.eclipse.jgit.http.server:jgit-servlet",
  12. "//org.eclipse.jgit.lfs:jgit-lfs",
  13. "//org.eclipse.jgit.lfs.server:jgit-lfs-server",
  14. "//org.eclipse.jgit.junit:junit",
  15. ],
  16. outs = ["all.zip"],
  17. cmd = " && ".join([
  18. "p=$$PWD",
  19. "t=$$(mktemp -d || mktemp -d -t bazel-tmp)",
  20. "cp $(SRCS) $$t",
  21. "cd $$t",
  22. "zip -qr $$p/$@ .",
  23. ]),
  24. )