You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ju...@apache.org on 2010/02/23 20:01:13 UTC

svn commit: r915492 - /sling/trunk/launchpad/testing/pom.xml

Author: justin
Date: Tue Feb 23 19:01:13 2010
New Revision: 915492

URL: http://svn.apache.org/viewvc?rev=915492&view=rev
Log:
SLING-1404 - adding new property jetty.http.port to change jetty http port, defaults to 8888

Modified:
    sling/trunk/launchpad/testing/pom.xml

Modified: sling/trunk/launchpad/testing/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/launchpad/testing/pom.xml?rev=915492&r1=915491&r2=915492&view=diff
==============================================================================
--- sling/trunk/launchpad/testing/pom.xml (original)
+++ sling/trunk/launchpad/testing/pom.xml Tue Feb 23 19:01:13 2010
@@ -44,6 +44,9 @@
     </scm>
 
     <properties>
+        <!-- HTTP port to use when running mvn jetty:run -->
+        <jetty.http.port>8888</jetty.http.port>
+
         <!-- path suffix for HTTP access to Sling -->
         <http.base.path />
 
@@ -154,7 +157,7 @@
 
                     <connectors>
                         <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
-                            <port>${http.port}</port>
+                            <port>${jetty.http.port}</port>
                             <maxIdleTime>60000</maxIdleTime>
                         </connector>
                     </connectors>