summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tests.bzl
diff options
context:
space:
mode:
authorThomas Wolf <thomas.wolf@paranor.ch>2017-08-31 14:14:05 +0200
committerThomas Wolf <thomas.wolf@paranor.ch>2017-08-31 14:14:05 +0200
commitc506f8d2dd0f0974339a087251f35e7e8d878df2 (patch)
treea5ab0714f6351860c48624dd8976159e28eb8314 /org.eclipse.jgit.test/tests.bzl
parentf4329b09d48e78dc67911a50a159bd64e78822fc (diff)
downloadjgit-c506f8d2dd0f0974339a087251f35e7e8d878df2.tar.gz
jgit-c506f8d2dd0f0974339a087251f35e7e8d878df2.zip
Add dependency to jsch for OpenSshConfigTest to bazel build
Make jsch visible to the test bundle and add the dependency. Change-Id: I0c49ee9b8f64fe8a8c74d2f08865917eb33069b4 Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
Diffstat (limited to 'org.eclipse.jgit.test/tests.bzl')
-rw-r--r--org.eclipse.jgit.test/tests.bzl4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jgit.test/tests.bzl b/org.eclipse.jgit.test/tests.bzl
index 9cadc7463a..3c42306db2 100644
--- a/org.eclipse.jgit.test/tests.bzl
+++ b/org.eclipse.jgit.test/tests.bzl
@@ -29,6 +29,10 @@ def tests(tests):
additional_deps = [
'//org.eclipse.jgit:insecure_cipher_factory',
]
+ if src.endswith("OpenSshConfigTest.java"):
+ additional_deps = [
+ '//lib:jsch',
+ ]
junit_tests(
name = name,