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

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