Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2016-10-13 10:29:25 +0000
committerMatthias Sohn2016-10-13 10:29:44 +0000
commit32c89d2844ede674950799b8d842fd27a09962ae (patch)
tree036b2696ae35bdb05107bd15fabf83eb655572fc
parentbaabf9f520f336b2d3107e47ff87e46b5253dbd0 (diff)
downloadjgit-32c89d2844ede674950799b8d842fd27a09962ae.tar.gz
jgit-32c89d2844ede674950799b8d842fd27a09962ae.tar.xz
jgit-32c89d2844ede674950799b8d842fd27a09962ae.zip
Add dependency to org.apache.commons.logging used by Apache HttpClient
Without this dependency running JGit CLI in Eclipse will hit ClassNotFoundExceptions when HttpClient is trying to log something. Change-Id: I2d50d9a18fac4c302de2c3a16c07f90ce3e5072e Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit.pgm/META-INF/MANIFEST.MF1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF b/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF
index ad400b30d3..6edf5615b8 100644
--- a/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF
@@ -12,6 +12,7 @@ Import-Package: javax.servlet;version="[3.1.0,4.0.0)",
org.apache.commons.compress.archivers;version="[1.3,2.0)",
org.apache.commons.compress.archivers.tar;version="[1.3,2.0)",
org.apache.commons.compress.archivers.zip;version="[1.3,2.0)",
+ org.apache.commons.logging;version="1.1.1",
org.eclipse.jetty.continuation;version="[9.0.0,10.0.0)",
org.eclipse.jetty.http;version="[9.0.0,10.0.0)",
org.eclipse.jetty.io;version="[9.0.0,10.0.0)",

Back to the top