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 2010/03/03 08:48:37 UTC

svn commit: r918353 - /myfaces/tobago/branches/tobago-1.0.x/example/pom.xml

Author: lofwyr
Date: Wed Mar  3 07:48:37 2010
New Revision: 918353

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

Modified:
    myfaces/tobago/branches/tobago-1.0.x/example/pom.xml

Modified: myfaces/tobago/branches/tobago-1.0.x/example/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/example/pom.xml?rev=918353&r1=918352&r2=918353&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/example/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.0.x/example/pom.xml Wed Mar  3 07:48:37 2010
@@ -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>