blob: e9a04c7173d0f337b6d891df412bbfa3fc031be9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package(default_visibility = ["//visibility:public"])
java_library(
name = "junit-ssh",
testonly = 1,
srcs = glob(["src/**/*.java"]),
resource_strip_prefix = "org.eclipse.jgit.junit.ssh/resources",
resources = glob(["resources/**"]),
deps = [
"//lib:sshd-core",
"//lib:sshd-sftp",
# We want these deps to be provided_deps
"//org.eclipse.jgit:jgit",
],
)
|