You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2009/12/16 10:15:32 UTC

svn commit: r891164 - /myfaces/tobago/trunk/example/pom.xml

Author: lofwyr
Date: Wed Dec 16 09:15:31 2009
New Revision: 891164

URL: http://svn.apache.org/viewvc?rev=891164&view=rev
Log:
make jetty port configurable

Modified:
    myfaces/tobago/trunk/example/pom.xml

Modified: myfaces/tobago/trunk/example/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/pom.xml?rev=891164&r1=891163&r2=891164&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/pom.xml (original)
+++ myfaces/tobago/trunk/example/pom.xml Wed Dec 16 09:15:31 2009
@@ -44,6 +44,14 @@
          -->
         <groupId>org.mortbay.jetty</groupId>
         <artifactId>maven-jetty-plugin</artifactId>
+        <!-- to change the port -->
+        <configuration>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>8080</port>
+            </connector>
+          </connectors>
+        </configuration>
       </plugin>
     </plugins>
   </build>