You are viewing a plain text version of this content. The canonical link for it is here.
Posted to surefire-commits@maven.apache.org by kr...@apache.org on 2010/12/14 10:03:37 UTC

svn commit: r1048987 - in /maven/surefire/trunk/maven-failsafe-plugin/src/it: jetty-war-test-failing/pom.xml jetty-war-test-passing/pom.xml

Author: krosenvold
Date: Tue Dec 14 09:03:37 2010
New Revision: 1048987

URL: http://svn.apache.org/viewvc?rev=1048987&view=rev
Log:
o Moved IT's from port 8080 to 8083.

Port 8080 is probably the most well-known secondary port known to man-kind.
It is a little known fact that Leonardo DaVinci had written 80/8080 beside
his drawing of the helicopter. Furthermore, gold jewellery with 8080 on
it has been seen in Viking graves in Scotland. Henry Morton Stanley went
searching for port 8080 in Africa. Ghandi always used port 8080. Van Halen
 had a #1 rock hit called 8080 in 1980.

So it's such a shame we fail the -Prun-its build when someone else is
using port 8080. No more.

Modified:
    maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-failing/pom.xml
    maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml

Modified: maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-failing/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-failing/pom.xml?rev=1048987&r1=1048986&r2=1048987&view=diff
==============================================================================
--- maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-failing/pom.xml (original)
+++ maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-failing/pom.xml Tue Dec 14 09:03:37 2010
@@ -72,6 +72,12 @@
           <stopPort>${integration-test-stop-port}</stopPort>
           <stopKey>STOP</stopKey>
           <contextPath>/</contextPath>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>${integration-test-port}</port>
+              <maxIdleTime>60000</maxIdleTime>
+            </connector>
+          </connectors>
         </configuration>
         <executions>
           <execution>
@@ -129,7 +135,7 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-    <integration-test-port>8080</integration-test-port>
+    <integration-test-port>8083</integration-test-port>
     <integration-test-stop-port>18009</integration-test-stop-port>
   </properties>
 

Modified: maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml?rev=1048987&r1=1048986&r2=1048987&view=diff
==============================================================================
--- maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml (original)
+++ maven/surefire/trunk/maven-failsafe-plugin/src/it/jetty-war-test-passing/pom.xml Tue Dec 14 09:03:37 2010
@@ -72,6 +72,12 @@
           <stopPort>${integration-test-stop-port}</stopPort>
           <stopKey>STOP</stopKey>
           <contextPath>/</contextPath>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>${integration-test-port}</port>
+              <maxIdleTime>60000</maxIdleTime>
+            </connector>
+          </connectors>
         </configuration>
         <executions>
           <execution>
@@ -129,7 +135,7 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-    <integration-test-port>8080</integration-test-port>
+    <integration-test-port>8083</integration-test-port>
     <integration-test-stop-port>18009</integration-test-stop-port>
   </properties>