xref: /JGit/org.eclipse.jgit.ssh.apache/BUILD (revision 80fd4cb0756daf21cd1da922988d55c02dba752a)
1*40ba12f3SDavid Pursehouseload("@rules_java//java:defs.bzl", "java_library")
2*40ba12f3SDavid Pursehouse
3488d9557SThomas Wolfpackage(default_visibility = ["//visibility:public"])
4488d9557SThomas Wolf
5488d9557SThomas WolfSRCS = glob(["src/**/*.java"])
6488d9557SThomas Wolf
7488d9557SThomas WolfRESOURCES = glob(["resources/**"])
8488d9557SThomas Wolf
9488d9557SThomas Wolfjava_library(
10488d9557SThomas Wolf    name = "ssh-apache",
11488d9557SThomas Wolf    srcs = SRCS,
12488d9557SThomas Wolf    resource_strip_prefix = "org.eclipse.jgit.ssh.apache/resources",
13488d9557SThomas Wolf    resources = RESOURCES,
14488d9557SThomas Wolf    deps = [
15db627c41SThomas Wolf        "//lib:eddsa",
16488d9557SThomas Wolf        "//lib:slf4j-api",
1786cee68eSThomas Wolf        "//lib:sshd-osgi",
18488d9557SThomas Wolf        "//lib:sshd-sftp",
19488d9557SThomas Wolf        "//org.eclipse.jgit:jgit",
20488d9557SThomas Wolf    ],
21488d9557SThomas Wolf)
22