Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718
  1. load(
  2. "@com_googlesource_gerrit_bazlets//tools:junit.bzl",
  3. "junit_tests",
  4. )
  5. junit_tests(
  6. name = "sshd_apache",
  7. srcs = glob(["tst/**/*.java"]),
  8. tags = ["sshd"],
  9. deps = [
  10. "//org.eclipse.jgit.test:sshd-helpers",
  11. "//lib:junit",
  12. "//org.eclipse.jgit:jgit",
  13. "//lib:sshd-core",
  14. "//lib:sshd-sftp",
  15. "//org.eclipse.jgit.ssh.apache:ssh-apache",
  16. ],
  17. )