Optional failsafe exclude

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1631779 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index a374e85..3544346 100644
--- a/pom.xml
+++ b/pom.xml
@@ -66,6 +66,9 @@
             **/launchpad/webapp/integrationtest
         </integration.test.code.path>
 
+        <!-- optionally exclude some integration tests  -->
+        <failsafe.exclude></failsafe.exclude>
+
         <!--
             Set this to true to stop mvn once the integration test Jetty instance is
             started. Useful to manually test the integration testing webapp.
@@ -242,6 +245,9 @@
                                 <include>**/*Test.java</include>
                                 <include>**/*IT.java</include>
                             </includes>
+                            <excludes>
+                                <exclude>${failsafe.exclude}</exclude>
+                            </excludes>
                             <excludedGroups>${sling.it.excludedGroups}</excludedGroups>
                             <systemPropertyVariables>
                                 <launchpad.http.server.url>http://${test.host}:${http.port}/</launchpad.http.server.url>