您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415
  1. package(default_visibility = ["//visibility:public"])
  2. java_library(
  3. name = "junit-ssh",
  4. testonly = 1,
  5. srcs = glob(["src/**/*.java"]),
  6. resource_strip_prefix = "org.eclipse.jgit.junit.ssh/resources",
  7. resources = glob(["resources/**"]),
  8. deps = [
  9. "//lib:sshd-core",
  10. "//lib:sshd-sftp",
  11. # We want these deps to be provided_deps
  12. "//org.eclipse.jgit:jgit",
  13. ],
  14. )