Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Sawicki2011-12-05 18:14:49 +0000
committerKevin Sawicki2011-12-05 18:14:49 +0000
commitff7db08b23b3fc53f01a9998a502cc9170a64307 (patch)
treee7e128e05e3d5eb0549f946edc17f59a3e2a2aa3 /org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
parent7cc26d2399ce584a18377bc581d94264bf2c7b70 (diff)
downloadegit-github-ff7db08b23b3fc53f01a9998a502cc9170a64307.tar.gz
egit-github-ff7db08b23b3fc53f01a9998a502cc9170a64307.tar.xz
egit-github-ff7db08b23b3fc53f01a9998a502cc9170a64307.zip
Use GitHubClient class to request Gist file contents.
Previously a URL connection was used which failed on Enterprise installs since credentials are needed. Using GitHubClient.getStream is now used instead with configured credentials. Change-Id: Ia18992b0aa79780cd667b06e62022d944312bfc8
Diffstat (limited to 'org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
index df282604..89777c7b 100644
--- a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
@@ -13,7 +13,8 @@ Export-Package: org.eclipse.mylyn.internal.github.core;version="1.1.0";x-friends
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.5.0,4.0.0)",
org.eclipse.mylyn.tasks.core;bundle-version="[3.4.0,4.0.0)",
org.eclipse.mylyn.commons.net;bundle-version="[3.4.0,4.0.0)"
-Import-Package: org.eclipse.egit.core;version="[1.2.0,1.3.0)",
+Import-Package: org.apache.http;version="[4.1.0,5.0.0)",
+ org.eclipse.egit.core;version="[1.2.0,1.3.0)",
org.eclipse.egit.github.core;version="[1.2.0,1.3.0)",
org.eclipse.egit.github.core.client;version="[1.2.0,1.3.0)",
org.eclipse.egit.github.core.service;version="[1.2.0,1.3.0)",

Back to the top