Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2009-04-01 20:26:01 +0000
committerJesse McConnell2009-04-01 20:26:01 +0000
commitc03a51f27a22339a0e8c8f688fe211657886cfe5 (patch)
treecf8fdce56f5dbdea54780e75dfe72fc8ddfbcc0d
parent834d1b71d53b3af65b02af564233678cdc2d3a8c (diff)
downloadorg.eclipse.jetty.project-c03a51f27a22339a0e8c8f688fe211657886cfe5.tar.gz
org.eclipse.jetty.project-c03a51f27a22339a0e8c8f688fe211657886cfe5.tar.xz
org.eclipse.jetty.project-c03a51f27a22339a0e8c8f688fe211657886cfe5.zip
fix upper bounds for osgi packaging, also address upper bound for optional slfj in jetty-util
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@79 7e9141cc-0065-0410-87d8-b60c137991c4
-rw-r--r--jetty-util/pom.xml2
-rw-r--r--pom.xml2
2 files changed, 3 insertions, 1 deletions
diff --git a/jetty-util/pom.xml b/jetty-util/pom.xml
index decaa1ca8e..c3a16cc26d 100644
--- a/jetty-util/pom.xml
+++ b/jetty-util/pom.xml
@@ -22,7 +22,7 @@
</goals>
<configuration>
<instructions>
- <Import-Package>org.slf4j;resolution:=optional,*</Import-Package>
+ <Import-Package>org.slf4j;version="[1.5,1.6)",resolution:=optional,*</Import-Package>
</instructions>
</configuration>
</execution>
diff --git a/pom.xml b/pom.xml
index f9dc022b95..3e255d6981 100644
--- a/pom.xml
+++ b/pom.xml
@@ -73,11 +73,13 @@
<version>2.0.0</version>
<extensions>true</extensions>
<configuration>
+
<instructions>
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
<Bundle-DocURL>${jetty.url}</Bundle-DocURL>
<Bundle-Vendor>Eclipse.org - Jetty</Bundle-Vendor>
<Bundle-Copyright>Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.</Bundle-Copyright>
+ <_versionpolicy>[$(version;==;$(@)),8.0)</_versionpolicy>
</instructions>
</configuration>
</plugin>

Back to the top