[weld-commits] Weld SVN: r4897 - examples/trunk/wicket/numberguess.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Mon Nov 9 17:15:23 EST 2009


Author: dan.j.allen
Date: 2009-11-09 17:15:22 -0500 (Mon, 09 Nov 2009)
New Revision: 4897

Modified:
   examples/trunk/wicket/numberguess/pom.xml
Log:
use port 9090 for embedded jetty


Modified: examples/trunk/wicket/numberguess/pom.xml
===================================================================
--- examples/trunk/wicket/numberguess/pom.xml	2009-11-09 21:53:36 UTC (rev 4896)
+++ examples/trunk/wicket/numberguess/pom.xml	2009-11-09 22:15:22 UTC (rev 4897)
@@ -83,6 +83,12 @@
             <groupId>org.mortbay.jetty</groupId>
             <artifactId>maven-jetty-plugin</artifactId>
             <configuration>
+               <connectors>
+                  <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+                     <port>${jetty.http.port}</port>
+                     <maxIdleTime>3600000</maxIdleTime>
+                  </connector>
+               </connectors>
                <overrideWebXml>src/main/webapp/WEB-INF/jetty-additions-to-web.xml</overrideWebXml>
             </configuration>
          </plugin>
@@ -164,5 +170,8 @@
       </profile>
    </profiles>
 
+   <properties>
+      <jetty.http.port>9090</jetty.http.port>
+   </properties>
 
 </project>



More information about the weld-commits mailing list