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

12345678910111213141516171819202122232425262728293031
  1. package(default_visibility = ["//visibility:public"])
  2. INSECURE_CIPHER_FACTORY = [
  3. "src/org/eclipse/jgit/transport/InsecureCipherFactory.java",
  4. ]
  5. SRCS = glob(
  6. ["src/**"],
  7. exclude = INSECURE_CIPHER_FACTORY,
  8. )
  9. RESOURCES = glob(["resources/**"])
  10. java_library(
  11. name = "jgit",
  12. srcs = SRCS,
  13. resource_strip_prefix = "org.eclipse.jgit/resources",
  14. resources = RESOURCES,
  15. deps = [
  16. ":insecure_cipher_factory",
  17. "//lib:javaewah",
  18. "//lib:jsch",
  19. "//lib:slf4j-api",
  20. ],
  21. )
  22. java_library(
  23. name = "insecure_cipher_factory",
  24. srcs = INSECURE_CIPHER_FACTORY,
  25. javacopts = ["-Xep:InsecureCryptoUsage:OFF"],
  26. )