summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.junit.ssh/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit.junit.ssh/BUILD')
-rw-r--r--org.eclipse.jgit.junit.ssh/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/org.eclipse.jgit.junit.ssh/BUILD b/org.eclipse.jgit.junit.ssh/BUILD
new file mode 100644
index 0000000000..e9a04c7173
--- /dev/null
+++ b/org.eclipse.jgit.junit.ssh/BUILD
@@ -0,0 +1,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",
+ ],
+)