Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2014-11-27 00:28:41 +0000
committerJan Bartel2014-11-27 00:28:41 +0000
commitc2cabae6f9e3ea24578c6a006872e023ec5c197d (patch)
tree8b73cdf98d5695f70ac3ea50943e703055761ec7
parentcbe12b1dd0a5350d46359a1d053be1f322e88385 (diff)
downloadorg.eclipse.jetty.releng.bundles-jetty-9.1.tar.gz
org.eclipse.jetty.releng.bundles-jetty-9.1.tar.xz
org.eclipse.jetty.releng.bundles-jetty-9.1.zip
Add the osgi-ified version of the servlet spec to the p2 repojetty-9.1
-rw-r--r--jetty.bundles.f.source/feature.xml7
-rw-r--r--jetty.bundles.f/feature.xml7
-rw-r--r--pom.xml6
3 files changed, 20 insertions, 0 deletions
diff --git a/jetty.bundles.f.source/feature.xml b/jetty.bundles.f.source/feature.xml
index f255f99..c497f41 100644
--- a/jetty.bundles.f.source/feature.xml
+++ b/jetty.bundles.f.source/feature.xml
@@ -105,6 +105,13 @@ it has to be on the boot classpath of the JVM -->
unpack="false"/-->
<plugin
+ id="org.eclipse.jetty.osgi-servlet-api.source"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="true"/>
+
+ <plugin
id="org.eclipse.jetty.osgi.boot.source"
download-size="0"
install-size="0"
diff --git a/jetty.bundles.f/feature.xml b/jetty.bundles.f/feature.xml
index 5a5687a..e943fde 100644
--- a/jetty.bundles.f/feature.xml
+++ b/jetty.bundles.f/feature.xml
@@ -122,6 +122,13 @@ it has to be on the boot classpath of the JVM
unpack="false"/>
<plugin
+ id="org.eclipse.jetty.osgi-servlet-api
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
id="org.eclipse.jetty.osgi.boot"
download-size="0"
install-size="0"
diff --git a/pom.xml b/pom.xml
index 6d61264..4d3c34d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,6 +21,7 @@
<tycho-version>0.15.0</tycho-version>
<jetty-version>9.1.0-SNAPSHOT</jetty-version>
+ <jetty-osgi-servlet-api-version>3.1.0.M0</jetty-osgi-servlet-api-version>
<jetty-npn-api-version>1.1.0.v20120525</jetty-npn-api-version>
<p2-install-folder-name>development</p2-install-folder-name>
@@ -84,6 +85,11 @@
<artifactId>jetty-httpservice</artifactId>
<version>${jetty-version}</version>
</dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.toolchain</groupId>
+ <artifactId>jetty-osgi-servlet-api</artifactId>
+ <version>${jetty-osgi-servlet-api-version}</version>
+ </dependency>
<!-- standard jetty artifacts -->
<dependency>

Back to the top