Updated jetty plugin to run the web-console through maven using "jetty:run" goal.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@430353 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Frederick G. Oconer 2006-08-10 10:41:56 +00:00
parent 21f9bb8367
commit a96820ed17
1 changed files with 8 additions and 11 deletions

View File

@ -39,18 +39,15 @@
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty6-plugin</artifactId>
<artifactId>maven-jetty-plugin</artifactId>
<configuration>
<systemProperties>
<!-- enable easy connection to JConsole -->
<systemProperty>
<name>com.sun.management.jmxremote</name>
<value></value>
</systemProperty>
</systemProperties>
<systemProperties>
<!-- enable easy connection to JConsole -->
<systemProperty>
<name>com.sun.management.jmxremote</name>
<value></value>
</systemProperty>
</systemProperties>
<scanIntervalSeconds>10</scanIntervalSeconds>
</configuration>
</plugin>