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/30 20:09:45 UTC

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

Author: piergiorgio
Date: Fri Sep 30 18:09:45 2011
New Revision: 1177760

URL: http://svn.apache.org/viewvc?rev=1177760&view=rev
Log:
reverted integration tests to the last commit because the Maven build was broken

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=1177760&r1=1177759&r2=1177760&view=diff
==============================================================================
--- incubator/lcf/trunk/tests/cmis/pom.xml (original)
+++ incubator/lcf/trunk/tests/cmis/pom.xml Fri Sep 30 18:09:45 2011
@@ -39,6 +39,7 @@
   <name>ManifoldCF - Test - CMIS</name>
   
   <build>
+    <defaultGoal>test</defaultGoal>
     <plugins>
       <plugin>
         <artifactId>maven-dependency-plugin</artifactId>
@@ -89,10 +90,6 @@
         <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>
@@ -100,21 +97,6 @@
             <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=1177760&r1=1177759&r2=1177760&view=diff
==============================================================================
--- incubator/lcf/trunk/tests/filesystem/pom.xml (original)
+++ incubator/lcf/trunk/tests/filesystem/pom.xml Fri Sep 30 18:09:45 2011
@@ -30,6 +30,7 @@
   <name>ManifoldCF - Test - Filesystem</name>
 
   <build>
+    <defaultGoal>test</defaultGoal>
     <plugins>
       <plugin>
         <artifactId>maven-dependency-plugin</artifactId>
@@ -73,32 +74,14 @@
         <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=1177760&r1=1177759&r2=1177760&view=diff
==============================================================================
--- incubator/lcf/trunk/tests/pom.xml (original)
+++ incubator/lcf/trunk/tests/pom.xml Fri Sep 30 18:09:45 2011
@@ -33,9 +33,14 @@
   <packaging>pom</packaging>
 
   <modules>
-  	<module>cmis</module>
+    <module>cmis</module>
     <module>filesystem</module>
     <module>sharepoint</module>
   </modules>
+  
+  <build>
+    <defaultGoal>test</defaultGoal>
+  </build>
+  
 
 </project>
\ No newline at end of file