1*488d9557SThomas Wolfpackage(default_visibility = ["//visibility:public"]) 2*488d9557SThomas Wolf 3*488d9557SThomas WolfSRCS = glob(["src/**/*.java"]) 4*488d9557SThomas Wolf 5*488d9557SThomas WolfRESOURCES = glob(["resources/**"]) 6*488d9557SThomas Wolf 7*488d9557SThomas Wolfjava_library( 8*488d9557SThomas Wolf name = "ssh-apache", 9*488d9557SThomas Wolf srcs = SRCS, 10*488d9557SThomas Wolf resource_strip_prefix = "org.eclipse.jgit.ssh.apache/resources", 11*488d9557SThomas Wolf resources = RESOURCES, 12*488d9557SThomas Wolf deps = [ 13*488d9557SThomas Wolf "//lib:slf4j-api", 14*488d9557SThomas Wolf "//lib:sshd-core", 15*488d9557SThomas Wolf "//lib:sshd-sftp", 16*488d9557SThomas Wolf "//org.eclipse.jgit:jgit", 17*488d9557SThomas Wolf ], 18*488d9557SThomas Wolf) 19