You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by pi...@apache.org on 2011/09/26 17:37:43 UTC

svn commit: r1175909 - in /incubator/lcf/trunk/tests: cmis/pom.xml filesystem/pom.xml pom.xml

Author: piergiorgio
Date: Mon Sep 26 15:37:42 2011
New Revision: 1175909

URL: http://svn.apache.org/viewvc?rev=1175909&view=rev
Log:
now all the long-running tests are executed in the integration-test phase of Maven (CONNECTORS-263)

Modified:
    incubator/lcf/trunk/tests/cmis/pom.xml
    incubator/lcf/trunk/tests/filesystem/pom.xml
    incubator/lcf/trunk/tests/pom.xml

Modified: incubator/lcf/trunk/tests/cmis/pom.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/tests/cmis/pom.xml?rev=1175909&r1=1175908&r2=1175909&view=diff
==============================================================================
--- incubator/lcf/trunk/tests/cmis/pom.xml (original)
+++ incubator/lcf/trunk/tests/cmis/pom.xml Mon Sep 26 15:37:42 2011
@@ -39,7 +39,6 @@
   <name>ManifoldCF - Test - CMIS</name>
   
   <build>
-    <defaultGoal>test</defaultGoal>
     <plugins>
       <plugin>
         <artifactId>maven-dependency-plugin</artifactId>
@@ -90,6 +89,10 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
+			    <excludes>
+			      <exclude>**/*Test.java</exclude>
+			      <exclude>**/Base.java</exclude>
+			    </excludes>
           <systemPropertyVariables>
             <crawlerWarPath>target/dependency/mcf-crawler-ui-${project.version}.war</crawlerWarPath>
             <authorityserviceWarPath>target/dependency/mcf-authority-service-${project.version}.war</authorityserviceWarPath>
@@ -97,6 +100,21 @@
             <openCmisServerWarPath>target/dependency/chemistry-opencmis-server-inmemory-war-0.5.0-SNAPSHOT.war</openCmisServerWarPath>
           </systemPropertyVariables>
         </configuration>
+        <executions>
+		      <execution>
+			      <id>integration-tests</id>
+			      <phase>integration-test</phase>
+			      <goals>
+			        <goal>test</goal>
+			      </goals>
+			      <configuration>
+			        <skip>false</skip>
+			        <excludes>
+			          <exclude>none</exclude>
+			        </excludes>
+			      </configuration>
+			    </execution>
+			  </executions>
       </plugin>
     </plugins>
   </build>

Modified: incubator/lcf/trunk/tests/filesystem/pom.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/tests/filesystem/pom.xml?rev=1175909&r1=1175908&r2=1175909&view=diff
==============================================================================
--- incubator/lcf/trunk/tests/filesystem/pom.xml (original)
+++ incubator/lcf/trunk/tests/filesystem/pom.xml Mon Sep 26 15:37:42 2011
@@ -30,7 +30,6 @@
   <name>ManifoldCF - Test - Filesystem</name>
 
   <build>
-    <defaultGoal>test</defaultGoal>
     <plugins>
       <plugin>
         <artifactId>maven-dependency-plugin</artifactId>
@@ -74,14 +73,32 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
+          <excludes>
+            <exclude>**/*Test.java</exclude>
+            <exclude>**/Base.java</exclude>
+          </excludes>
           <systemPropertyVariables>
             <crawlerWarPath>target/dependency/mcf-crawler-ui-${project.version}.war</crawlerWarPath>
             <authorityserviceWarPath>target/dependency/mcf-authority-service-${project.version}.war</authorityserviceWarPath>
             <apiWarPath>target/dependency/mcf-api-service-${project.version}.war</apiWarPath>
           </systemPropertyVariables>
         </configuration>
+        <executions>
+          <execution>
+            <id>integration-tests</id>
+            <phase>integration-test</phase>
+            <goals>
+              <goal>test</goal>
+            </goals>
+            <configuration>
+              <skip>false</skip>
+              <excludes>
+                <exclude>none</exclude>
+              </excludes>
+            </configuration>
+          </execution>
+        </executions>
       </plugin>
-
     </plugins>
   </build>
 

Modified: incubator/lcf/trunk/tests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/tests/pom.xml?rev=1175909&r1=1175908&r2=1175909&view=diff
==============================================================================
--- incubator/lcf/trunk/tests/pom.xml (original)
+++ incubator/lcf/trunk/tests/pom.xml Mon Sep 26 15:37:42 2011
@@ -37,10 +37,5 @@
     <module>filesystem</module>
     <module>sharepoint</module>
   </modules>
-  
-  <build>
-    <defaultGoal>test</defaultGoal>
-  </build>
-  
 
 </project>
\ No newline at end of file