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

12345678910111213141516171819
  1. package(default_visibility = ["//visibility:public"])
  2. SRCS = glob(["src/**/*.java"])
  3. RESOURCES = glob(["resources/**"])
  4. java_library(
  5. name = "ssh-apache",
  6. srcs = SRCS,
  7. resource_strip_prefix = "org.eclipse.jgit.ssh.apache/resources",
  8. resources = RESOURCES,
  9. deps = [
  10. "//lib:eddsa",
  11. "//lib:slf4j-api",
  12. "//lib:sshd-core",
  13. "//lib:sshd-sftp",
  14. "//org.eclipse.jgit:jgit",
  15. ],
  16. )