Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Trutz2011-05-16 17:46:59 +0000
committerKevin Sawicki2011-05-16 17:46:59 +0000
commit5296efdc3cd88f2869de93b0dcf93c1dfcf481c5 (patch)
treecd9c39b4ba318c72064fcb42244470d913f5311a /org.eclipse.egit.github.core/META-INF/MANIFEST.MF
parent4a1dff2af46ad965398453b46f6ea3b2c6be4336 (diff)
downloadegit-github-5296efdc3cd88f2869de93b0dcf93c1dfcf481c5.tar.gz
egit-github-5296efdc3cd88f2869de93b0dcf93c1dfcf481c5.tar.xz
egit-github-5296efdc3cd88f2869de93b0dcf93c1dfcf481c5.zip
GitHubClient refactored to use HttpClient 4.1
Change-Id: I87ac2e8e097e6436a4765126af2b044013e5592f Signed-off-by: Christian Trutz <christian.trutz@gmail.com> Signed-off-by: Kevin Sawicki <kevin@github.com>
Diffstat (limited to 'org.eclipse.egit.github.core/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.egit.github.core/META-INF/MANIFEST.MF16
1 files changed, 12 insertions, 4 deletions
diff --git a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF
index fda2872b..b35dd3ba 100644
--- a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF
@@ -9,10 +9,18 @@ Bundle-RequiredExecutionEnvironment: J2SE-1.5
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.httpclient;version="3.1.0",
- org.apache.commons.httpclient.auth;version="3.1.0",
- org.apache.commons.httpclient.methods;version="3.1.0",
- org.apache.commons.httpclient.protocol;version="3.1.0"
+ org.apache.http;version="4.1.0",
+ org.apache.http.auth;version="4.1.0",
+ org.apache.http.client;version="4.1.0",
+ org.apache.http.client.entity;version="4.1.0",
+ org.apache.http.client.methods;version="4.1.0",
+ org.apache.http.client.protocol;version="4.1.0",
+ org.apache.http.client.utils;version="4.1.0",
+ org.apache.http.entity;version="4.1.0",
+ org.apache.http.impl.auth;version="4.1.0",
+ org.apache.http.impl.client;version="4.1.0",
+ org.apache.http.message;version="4.1.0",
+ org.apache.http.protocol;version="4.1.0"
Export-Package: org.eclipse.egit.github.core,
org.eclipse.egit.github.core.client,
org.eclipse.egit.github.core.service,

Back to the top