Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugues Malphettes2010-05-03 23:44:50 +0000
committerHugues Malphettes2010-05-03 23:44:50 +0000
commita90221449c8702153c419eb535f514160d473f88 (patch)
treebe32b3379ea86c8d2a9b6ea3f4c24190630f7f8d
parent2f2c9cbe14e4282301d12ff17a725c9ffc906365 (diff)
downloadorg.eclipse.jetty.project-a90221449c8702153c419eb535f514160d473f88.tar.gz
org.eclipse.jetty.project-a90221449c8702153c419eb535f514160d473f88.tar.xz
org.eclipse.jetty.project-a90221449c8702153c419eb535f514160d473f88.zip
don't import javax.management it is provided by jdk5 already
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1684 7e9141cc-0065-0410-87d8-b60c137991c4
-rw-r--r--jetty-jmx/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/jetty-jmx/pom.xml b/jetty-jmx/pom.xml
index 5fd3e5c0f4..eaa94925f0 100644
--- a/jetty-jmx/pom.xml
+++ b/jetty-jmx/pom.xml
@@ -23,6 +23,11 @@
<goals>
<goal>manifest</goal>
</goals>
+ <configuration>
+ <instructions>
+ <Import-Package>!javax.management.*,*</Import-Package>
+ </instructions>
+ </configuration>
</execution>
</executions>
</plugin>

Back to the top