diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2020-08-31 09:20:06 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2020-09-01 17:51:45 +0200 |
commit | 8b589b3bf264075d5748b10197d226a452c4422b (patch) | |
tree | bdba27ab9189b2b24f1868d0217656d363999980 | |
parent | 50e81a52c0df9fad9aa795079252f30bd2506836 (diff) | |
download | jgit-8b589b3bf264075d5748b10197d226a452c4422b.tar.gz jgit-8b589b3bf264075d5748b10197d226a452c4422b.zip |
[bazel] Add missing dependency to slf4j-api
Change-Id: I8a6b0cc8892ff4ba83d0f4a0d5801b1de27401f4
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit.junit.ssh/BUILD | 1 | ||||
-rw-r--r-- | org.eclipse.jgit.lfs.test/BUILD | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jgit.junit.ssh/BUILD b/org.eclipse.jgit.junit.ssh/BUILD index 50142fe5a9..f7856b5273 100644 --- a/org.eclipse.jgit.junit.ssh/BUILD +++ b/org.eclipse.jgit.junit.ssh/BUILD @@ -14,6 +14,7 @@ java_library( ], deps = [ "//lib:junit", + "//lib:slf4j-api", "//lib:sshd-osgi", "//lib:sshd-sftp", # We want these deps to be provided_deps diff --git a/org.eclipse.jgit.lfs.test/BUILD b/org.eclipse.jgit.lfs.test/BUILD index 061ecd71f7..4665f675b1 100644 --- a/org.eclipse.jgit.lfs.test/BUILD +++ b/org.eclipse.jgit.lfs.test/BUILD @@ -13,6 +13,7 @@ junit_tests( deps = [ ":helpers", "//lib:junit", + "//lib:slf4j-api", "//org.eclipse.jgit:jgit", "//org.eclipse.jgit.junit:junit", "//org.eclipse.jgit.lfs:jgit-lfs", |