1*77848d63SMatthias Sohnload("@rules_java//java:defs.bzl", "java_library") 2*77848d63SMatthias Sohn 3*77848d63SMatthias Sohnpackage(default_visibility = ["//visibility:public"]) 4*77848d63SMatthias Sohn 5*77848d63SMatthias SohnSRCS = glob(["src/**/*.java"]) 6*77848d63SMatthias Sohn 7*77848d63SMatthias SohnRESOURCES = glob(["resources/**"]) 8*77848d63SMatthias Sohn 9*77848d63SMatthias Sohnjava_library( 10*77848d63SMatthias Sohn name = "gpg-bc", 11*77848d63SMatthias Sohn srcs = SRCS, 12*77848d63SMatthias Sohn resource_strip_prefix = "org.eclipse.jgit.gpg.bc/resources", 13*77848d63SMatthias Sohn resources = RESOURCES, 14*77848d63SMatthias Sohn deps = [ 15*77848d63SMatthias Sohn "//lib:bcpg", 16*77848d63SMatthias Sohn "//lib:bcpkix", 17*77848d63SMatthias Sohn "//lib:bcprov", 18*77848d63SMatthias Sohn "//lib:slf4j-api", 19*77848d63SMatthias Sohn "//org.eclipse.jgit:jgit", 20*77848d63SMatthias Sohn ], 21*77848d63SMatthias Sohn) 22