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

1234567891011121314151617181920
  1. load("@rules_java//java:defs.bzl", "java_library")
  2. package(default_visibility = ["//visibility:public"])
  3. SRCS = glob(["src/**/*.java"])
  4. RESOURCES = glob(["resources/**"])
  5. java_library(
  6. name = "ssh-jsch",
  7. srcs = SRCS,
  8. resource_strip_prefix = "org.eclipse.jgit.ssh.jsch/resources",
  9. resources = RESOURCES,
  10. deps = [
  11. "//lib:jsch",
  12. "//lib:jzlib",
  13. "//lib:slf4j-api",
  14. "//org.eclipse.jgit:jgit",
  15. ],
  16. )