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

123456789101112131415161718192021
  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 = "gpg-bc",
  7. srcs = SRCS,
  8. resource_strip_prefix = "org.eclipse.jgit.gpg.bc/resources",
  9. resources = RESOURCES,
  10. deps = [
  11. "//lib:bcpg",
  12. "//lib:bcpkix",
  13. "//lib:bcprov",
  14. "//lib:slf4j-api",
  15. "//org.eclipse.jgit:jgit",
  16. ],
  17. )