Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Baumgart2010-12-08 15:20:28 +0000
committerMatthias Sohn2010-12-08 15:20:28 +0000
commit51e2646d4a17a22210111675030dee54f4cfee49 (patch)
treeca46985247e23b7abc282b8167750459550b0a11 /org.eclipse.jgit.junit.http/META-INF/MANIFEST.MF
parenta02be9725c9f83f0a0280a9a1f00e8d484825885 (diff)
downloadjgit-51e2646d4a17a22210111675030dee54f4cfee49.tar.gz
jgit-51e2646d4a17a22210111675030dee54f4cfee49.tar.xz
jgit-51e2646d4a17a22210111675030dee54f4cfee49.zip
Introduce http test bundle
Introduce a http test bundle to make this functionality available for EGit tests. A simple http server class is provided. The jetty version was updated to a version that is also available via p2 (needed in EGit UI tests). Change-Id: I13bfc4c6c47e27d8f97d3e9752347d6d23e553d4 Signed-off-by: Jens Baumgart <jens.baumgart@sap.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.junit.http/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.jgit.junit.http/META-INF/MANIFEST.MF26
1 files changed, 26 insertions, 0 deletions
diff --git a/org.eclipse.jgit.junit.http/META-INF/MANIFEST.MF b/org.eclipse.jgit.junit.http/META-INF/MANIFEST.MF
new file mode 100644
index 0000000000..19a172288a
--- /dev/null
+++ b/org.eclipse.jgit.junit.http/META-INF/MANIFEST.MF
@@ -0,0 +1,26 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %plugin_name
+Bundle-SymbolicName: org.eclipse.jgit.junit.http
+Bundle-Version: 0.10.0.qualifier
+Bundle-Localization: plugin
+Bundle-Vendor: %provider_name
+Bundle-ActivationPolicy: lazy
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Import-Package: javax.servlet;version="[2.5.0,3.0.0)",
+ javax.servlet.http;version="[2.5.0,3.0.0)",
+ junit.framework;version="[3.8.2,4.0.0)",
+ org.eclipse.jgit.errors;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.http.server;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.http.server.resolver;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.junit;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.lib;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.revwalk;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.storage.file;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.transport;version="[0.10.0,0.11.0)"
+Export-Package: org.eclipse.jgit.junit.http;version="0.10.0"
+Require-Bundle: org.eclipse.jetty.http;bundle-version="7.0.1",
+ org.eclipse.jetty.server;bundle-version="7.0.1",
+ org.eclipse.jetty.servlet;bundle-version="7.0.1",
+ org.eclipse.jetty.util;bundle-version="7.0.1",
+ org.eclipse.jetty.security;bundle-version="7.0.1"

Back to the top