You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2015/04/13 15:57:57 UTC

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

Author: cziegeler
Date: Mon Apr 13 13:57:57 2015
New Revision: 1673196

URL: http://svn.apache.org/r1673196
Log:
SLING-4598 : Migrate launchpad testing to provisioning model

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=1673196&r1=1673195&r2=1673196&view=diff
==============================================================================
--- sling/trunk/launchpad/testing/pom.xml (original)
+++ sling/trunk/launchpad/testing/pom.xml Mon Apr 13 13:57:57 2015
@@ -79,6 +79,9 @@
         
         <slf4j.version>1.7.6</slf4j.version>
         <logback.version>1.1.2</logback.version>
+
+        <min.port>41000</min.port>
+        <max.port>41199</max.port>
     </properties>
 
     <build>
@@ -115,6 +118,8 @@
                                 <portName>http.port</portName>
                                 <portName>sling.control.port</portName>
                             </portNames>
+                            <minPortNumber>${min.port}</minPortNumber>
+                            <maxPortNumber>${max.port}</maxPortNumber>
                         </configuration>
                     </execution>
                 </executions>
@@ -219,11 +224,11 @@
                             <servers>
                                 <server>
                                     <port>${http.port}</port>
+                                    <controlPort>${sling.control.port}</controlPort>
                                 </server>
                             </servers>
                             <!-- TODO 
                             <controlHost>${test.host}</controlHost>
-                            <controlPort>${sling.control.port}</controlPort>
                             -->
                         </configuration>
                     </plugin>
@@ -310,6 +315,8 @@
                 </plugins>
             </build>
         </profile>
+<!-- 
+ 
         <profile>
             <id>emma</id>
             <build>
@@ -335,6 +342,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>emma-report</id>
             <build>
@@ -376,8 +384,41 @@
                 </plugins>
             </build>
         </profile>
+        <profile>
+            <id>port-java6</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+                <jdk>1.6</jdk>
+            </activation>
+            <properties>
+                <min.port>41200</min.port>
+                <max.port>41399</max.port>
+            </properties>
+        </profile>
+        <profile>
+            <id>port-java7</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+                <jdk>1.7</jdk>
+            </activation>
+            <properties>
+                <min.port>41400</min.port>
+                <max.port>41599</max.port>
+            </properties>
+        </profile>
+        <profile>
+            <id>port-java8</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+                <jdk>1.8</jdk>
+            </activation>
+            <properties>
+                <min.port>41600</min.port>
+                <max.port>41799</max.port>
+            </properties>
+        </profile>
     </profiles>
-
+    
     <dependencies>
       <!-- The integration tests -->
         <dependency>