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

123456789101112131415161718192021222324
  1. load("@rules_java//java:defs.bzl", "java_library")
  2. package(default_visibility = ["//visibility:public"])
  3. java_library(
  4. name = "junit-ssh",
  5. testonly = 1,
  6. srcs = glob(["src/**/*.java"]),
  7. resource_strip_prefix = "org.eclipse.jgit.junit.ssh/resources",
  8. resources = glob(["resources/**"]),
  9. visibility = [
  10. "//org.eclipse.jgit.ssh.apache.test:__pkg__",
  11. "//org.eclipse.jgit.ssh.jsch.test:__pkg__",
  12. ],
  13. deps = [
  14. "//lib:junit",
  15. "//lib:slf4j-api",
  16. "//lib:sshd-osgi",
  17. "//lib:sshd-sftp",
  18. # We want these deps to be provided_deps
  19. "//org.eclipse.jgit:jgit",
  20. "//org.eclipse.jgit.junit:junit",
  21. ],
  22. )