Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugues Malphettes2011-05-17 14:27:29 +0000
committerHugues Malphettes2011-05-17 14:27:29 +0000
commitb3ff7fd7d9a1342b90bb8a03c0924b6ea4da3dd2 (patch)
tree8e9a636e768b3d3eb21d2d7fa823a9e425fa122e /jetty-annotations/pom.xml
parent275a0da64dd4f8d7d200bf58d12d5685017ad9d5 (diff)
downloadorg.eclipse.jetty.project-b3ff7fd7d9a1342b90bb8a03c0924b6ea4da3dd2.tar.gz
org.eclipse.jetty.project-b3ff7fd7d9a1342b90bb8a03c0924b6ea4da3dd2.tar.xz
org.eclipse.jetty.project-b3ff7fd7d9a1342b90bb8a03c0924b6ea4da3dd2.zip
make sure that the bundle generated imports the version 2.5 of the spec. not 0.0.0
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3167 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-annotations/pom.xml')
-rw-r--r--jetty-annotations/pom.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/jetty-annotations/pom.xml b/jetty-annotations/pom.xml
index cc97fec550..79b3e17151 100644
--- a/jetty-annotations/pom.xml
+++ b/jetty-annotations/pom.xml
@@ -19,10 +19,16 @@
<extensions>true</extensions>
<executions>
<execution>
+ <id>generate-manifest</id>
<goals>
<goal>manifest</goal>
</goals>
- </execution>
+ <configuration>
+ <instructions>
+ <Import-Package>javax.servlet.*;version="[2.5,3.0)",*</Import-Package>
+ </instructions>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>

Back to the top