You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2008/08/07 11:48:24 UTC

svn commit: r683568 - /maven/plugins/trunk/maven-eclipse-plugin/pom.xml

Author: aheritier
Date: Thu Aug  7 02:48:24 2008
New Revision: 683568

URL: http://svn.apache.org/viewvc?rev=683568&view=rev
Log:
Execute also unit tests when integration-tests profile is activated 

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/pom.xml

Modified: maven/plugins/trunk/maven-eclipse-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/pom.xml?rev=683568&r1=683567&r2=683568&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/pom.xml Thu Aug  7 02:48:24 2008
@@ -198,6 +198,9 @@
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
+          <includes>
+            <include>**/*Test.java</include>
+          </includes>
           <excludes>
             <exclude>**/Abstract*.java</exclude>
             <exclude>**/InstallPluginsMojoTest.java</exclude>
@@ -230,6 +233,7 @@
             <configuration>
               <includes>
                 <include>**/*IT.java</include>
+                <include>**/*Test.java</include>
               </includes>
             </configuration>
           </plugin>