Browse Source

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>
stable-4.9
Thomas Wolf 7 years ago
parent
commit
c506f8d2dd
  1. 5
      lib/BUILD
  2. 4
      org.eclipse.jgit.test/tests.bzl

5
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"],
)

4
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,

Loading…
Cancel
Save