From c506f8d2dd0f0974339a087251f35e7e8d878df2 Mon Sep 17 00:00:00 2001 From: Thomas Wolf Date: Thu, 31 Aug 2017 14:14:05 +0200 Subject: [PATCH] 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 --- lib/BUILD | 5 ++++- org.eclipse.jgit.test/tests.bzl | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/BUILD b/lib/BUILD index ffe66a3d8..703e7befc 100644 --- a/lib/BUILD +++ b/lib/BUILD @@ -106,7 +106,10 @@ java_library( java_library( name = "jsch", - visibility = ["//org.eclipse.jgit:__pkg__"], + visibility = [ + "//org.eclipse.jgit:__pkg__", + "//org.eclipse.jgit.test:__pkg__", + ], exports = ["@jsch//jar"], ) diff --git a/org.eclipse.jgit.test/tests.bzl b/org.eclipse.jgit.test/tests.bzl index 9cadc7463..3c42306db 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,