You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by da...@apache.org on 2015/05/27 15:44:59 UTC

svn commit: r1682027 - /jackrabbit/oak/trunk/oak-parent/pom.xml

Author: davide
Date: Wed May 27 13:44:58 2015
New Revision: 1682027

URL: http://svn.apache.org/r1682027
Log:
OAK-2908 - infrastructure for running longevity tests

- added mvn profile

Modified:
    jackrabbit/oak/trunk/oak-parent/pom.xml

Modified: jackrabbit/oak/trunk/oak-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-parent/pom.xml?rev=1682027&r1=1682026&r2=1682027&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-parent/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-parent/pom.xml Wed May 27 13:44:58 2015
@@ -498,6 +498,37 @@
     </profile>
 
     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - other profiles -->
+
+   <profile>
+      <id>longevity</id>
+      <build>
+         <plugins>
+            <plugin>
+               <artifactId>maven-surefire-plugin</artifactId>
+               <configuration>
+                  <skipTests>true</skipTests>
+               </configuration>
+            </plugin>
+            <plugin>
+               <artifactId>maven-failsafe-plugin</artifactId>
+               <executions>
+                  <execution>
+                     <goals>
+                        <goal>integration-test</goal>
+                        <goal>verify</goal>
+                     </goals>
+                  </execution>
+               </executions>
+               <configuration>
+               <includes>
+                <include>**/*LT.java</include>
+               </includes>
+               </configuration>
+            </plugin>
+         </plugins>
+      </build>
+   </profile>
+    
     <profile>
       <id>pedantic</id>
       <build>