Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.mylyn.github-feature/feature.xml6
-rw-r--r--org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF3
2 files changed, 6 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.github-feature/feature.xml b/org.eclipse.mylyn.github-feature/feature.xml
index 37331401..091b2940 100644
--- a/org.eclipse.mylyn.github-feature/feature.xml
+++ b/org.eclipse.mylyn.github-feature/feature.xml
@@ -19,10 +19,14 @@
<requires>
<import plugin="org.eclipse.core.runtime" version="3.5.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.mylyn.tasks.core" version="3.2.0" match="greaterOrEqual"/>
<import plugin="org.eclipse.ui" version="3.5.0" match="greaterOrEqual"/>
<import plugin="org.eclipse.ui.forms" version="3.4.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.mylyn.tasks.core" version="3.2.0" match="greaterOrEqual"/>
<import plugin="org.eclipse.mylyn.tasks.ui" version="3.2.0" match="greaterOrEqual"/>
+ <import plugin="com.google.gson" version="1.6" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.jface.text" version="3.5.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.ide" version="3.5.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.core.resources" version="3.5.0" match="greaterOrEqual"/>
</requires>
<plugin
diff --git a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
index feb12f46..c5dcb0f0 100644
--- a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
@@ -13,5 +13,4 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
org.eclipse.mylyn.commons.net;bundle-version="3.2.0"
Import-Package: com.google.gson;version="1.6.0",
com.google.gson.annotations;version="1.6.0",
- com.google.gson.reflect;version="1.6.0",
- org.apache.commons.logging
+ com.google.gson.reflect;version="1.6.0"

Back to the top