SLING-1439 - Readyness timeout in launchpad/testing should be configurable

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@923127 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index 36fc2d7..e2f9dfc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,6 +47,9 @@
         <!-- HTTP port to use when running mvn jetty:run -->
         <jetty.http.port>8888</jetty.http.port>
 
+        <!-- Timeout when checking for Sling readyness before starting tests -->
+        <HttpTestBase.readyTimeoutSeconds>62</HttpTestBase.readyTimeoutSeconds>
+
         <!-- path suffix for HTTP access to Sling -->
         <http.base.path />
 
@@ -244,6 +247,12 @@
                                 http://${test.host}:${http.port}/${webdav.workspace.path}
                             </value>
                         </property>
+                        <property>
+                            <name>HttpTestBase.readyTimeoutSeconds</name>
+                            <value>
+                                ${HttpTestBase.readyTimeoutSeconds}
+                            </value>
+                        </property>
                     </systemProperties>
                 </configuration>
             </plugin>
@@ -320,7 +329,12 @@
                                                 http://${test.host}:${http.port}/${project.build.finalName}/${webdav.workspace.path}
                                             </value>
                                         </property>
-
+                                        <property>
+                                            <name>HttpTestBase.readyTimeoutSeconds</name>
+                                            <value>
+                                                ${HttpTestBase.readyTimeoutSeconds}
+                                            </value>
+                                        </property>
                                     </systemProperties>
                                 </configuration>
                             </execution>