Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2017-01-19 23:12:39 +0000
committerMatthias Sohn2017-03-07 00:06:48 +0000
commit5635f7916bac342a1a9cc760a15680730fe81115 (patch)
tree92909f1a7dfd8caa965f6f7d8529c787ca9614fc
parent74a4a0e49c9b70dc6053ccb10eb0fef3d6a38c0a (diff)
downloadegit-5635f7916bac342a1a9cc760a15680730fe81115.tar.gz
egit-5635f7916bac342a1a9cc760a15680730fe81115.tar.xz
egit-5635f7916bac342a1a9cc760a15680730fe81115.zip
Add missing dependency to org.slf4j to org.eclipse.egit.ui
This dependency is needed to fix ClassNotFoundException reported in Bug 509008. Bug: 509008 Change-Id: I0497794aab97b4d10f0cedb6fba0633c6d10e837 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com> (cherry picked from commit 1fd7a927576c27c647489f02c79071f4a566510b)
-rw-r--r--org.eclipse.egit.ui/META-INF/MANIFEST.MF3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui/META-INF/MANIFEST.MF b/org.eclipse.egit.ui/META-INF/MANIFEST.MF
index 1b7eb34a68..d19338062b 100644
--- a/org.eclipse.egit.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.ui/META-INF/MANIFEST.MF
@@ -68,7 +68,8 @@ Import-Package: org.eclipse.egit.core;version="[4.6.1,4.7.0)",
org.eclipse.jgit.treewalk;version="[4.6.1,4.7.0)",
org.eclipse.jgit.treewalk.filter;version="[4.6.1,4.7.0)",
org.eclipse.jgit.util;version="[4.6.1,4.7.0)",
- org.eclipse.jgit.util.io;version="[4.6.1,4.7.0)"
+ org.eclipse.jgit.util.io;version="[4.6.1,4.7.0)",
+ org.slf4j;version="[1.7.0,2.0.0)"
Export-Package: org.eclipse.egit.ui;version="4.6.1";x-friends:="org.eclipse.egit.mylyn.ui,org.eclipse.egit.gitflow.ui",
org.eclipse.egit.ui.internal;version="4.6.1";x-friends:="org.eclipse.egit.import,org.eclipse.egit.gitflow.ui",
org.eclipse.egit.ui.internal.actions;version="4.6.1";x-friends:="org.eclipse.egit.gitflow.ui",

Back to the top