You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ac...@apache.org on 2006/10/31 18:54:22 UTC

svn commit: r469583 - in /incubator/activemq/branches/activemq-4.0: activemq-web-console/pom.xml activemq-web-demo/pom.xml pom.xml

Author: aco
Date: Tue Oct 31 09:54:21 2006
New Revision: 469583

URL: http://svn.apache.org/viewvc?view=rev&rev=469583
Log:
AMQ-1015: Upgraded maven-jetty-plugin

Modified:
    incubator/activemq/branches/activemq-4.0/activemq-web-console/pom.xml
    incubator/activemq/branches/activemq-4.0/activemq-web-demo/pom.xml
    incubator/activemq/branches/activemq-4.0/pom.xml

Modified: incubator/activemq/branches/activemq-4.0/activemq-web-console/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/branches/activemq-4.0/activemq-web-console/pom.xml?view=diff&rev=469583&r1=469582&r2=469583
==============================================================================
--- incubator/activemq/branches/activemq-4.0/activemq-web-console/pom.xml (original)
+++ incubator/activemq/branches/activemq-4.0/activemq-web-console/pom.xml Tue Oct 31 09:54:21 2006
@@ -41,18 +41,21 @@
       <plugin>
         <groupId>org.mortbay.jetty</groupId>
         <artifactId>maven-jetty-plugin</artifactId>
-        <version>6.0.0</version>
+        <version>${jetty-version}</version>
         <configuration>
-          
-	         <systemProperties>
-            
-              <!-- enable easy connection to JConsole -->
-              <systemProperty>
-								<name>com.sun.management.jmxremote</name>
-								<value></value>
-							</systemProperty>
-           </systemProperties>
-
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>${jetty.port}</port>
+              <maxIdleTime>60000</maxIdleTime>
+            </connector>
+          </connectors>
+          <systemProperties>
+            <!-- enable easy connection to JConsole -->
+            <systemProperty>
+              <name>com.sun.management.jmxremote</name>
+              <value></value>
+            </systemProperty>
+          </systemProperties>
           <scanIntervalSeconds>10</scanIntervalSeconds>
         </configuration>
       </plugin>
@@ -191,4 +194,7 @@
     </dependency>
   </dependencies>
 
+  <properties>
+    <jetty.port>8080</jetty.port>
+  </properties>
 </project>

Modified: incubator/activemq/branches/activemq-4.0/activemq-web-demo/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/branches/activemq-4.0/activemq-web-demo/pom.xml?view=diff&rev=469583&r1=469582&r2=469583
==============================================================================
--- incubator/activemq/branches/activemq-4.0/activemq-web-demo/pom.xml (original)
+++ incubator/activemq/branches/activemq-4.0/activemq-web-demo/pom.xml Tue Oct 31 09:54:21 2006
@@ -40,8 +40,15 @@
     <plugins>
       <plugin>
         <groupId>org.mortbay.jetty</groupId>
-        <artifactId>maven-jetty6-plugin</artifactId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>${jetty-version}</version>
         <configuration>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>${jetty.port}</port>
+              <maxIdleTime>60000</maxIdleTime>
+            </connector>
+          </connectors>
           <scanIntervalSeconds>10</scanIntervalSeconds>
         </configuration>
       </plugin>
@@ -133,4 +140,7 @@
     </dependency>
   </dependencies>
 
+  <properties>
+    <jetty.port>8080</jetty.port>
+  </properties>
 </project>

Modified: incubator/activemq/branches/activemq-4.0/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/branches/activemq-4.0/pom.xml?view=diff&rev=469583&r1=469582&r2=469583
==============================================================================
--- incubator/activemq/branches/activemq-4.0/pom.xml (original)
+++ incubator/activemq/branches/activemq-4.0/pom.xml Tue Oct 31 09:54:21 2006
@@ -133,6 +133,7 @@
     <module>activemq-rar</module>
     <module>activemq-web</module>
     <module>activemq-web-demo</module>
+    <module>activemq-web-console</module>
     <module>activemq-optional</module>
     <module>maven-bundle-plugin</module>
     <!--
@@ -763,6 +764,11 @@
           <artifactId>maven-surefire-plugin</artifactId>
           <version>2.1.3</version>
         </plugin>
+        <plugin>
+          <groupId>org.mortbay.jetty</groupId>
+          <artifactId>maven-jetty-plugin</artifactId>
+          <version>${jetty-version}</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
@@ -808,6 +814,7 @@
   </reporting>
 
   <properties>
+    <jetty-version>6.0.1</jetty-version>
     <dist-repo-url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-incubating-repository</dist-repo-url>
     <m1-dist-repo-url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m1-snapshot-repository</m1-dist-repo-url>
     <site-repo-url>scpexe://people.apache.org/www/incubator.apache.org/activemq/maven/</site-repo-url>