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/09/02 17:58:26 UTC

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

Author: aheritier
Date: Tue Sep  2 08:58:25 2008
New Revision: 691290

URL: http://svn.apache.org/viewvc?rev=691290&view=rev
Log:
Launch ITs in integration-test phase

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=691290&r1=691289&r2=691290&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/pom.xml Tue Sep  2 08:58:25 2008
@@ -51,7 +51,7 @@
   <properties>
     <maven.test.jvmargs>-Xmx256m</maven.test.jvmargs>
   </properties>
-  
+
   <dependencies>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
@@ -214,17 +214,24 @@
                   <!-- The tests check file encoding and class path ordering which depends on fixes in latest Maven -->
                   <version>[2.0.9,)</version>
                 </requireMavenVersion>
-              </rules>    
+              </rules>
             </configuration>
           </execution>
         </executions>
       </plugin>
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>test</phase>
+            <configuration>
+              <includes>
+                <include>**/*Test.java</include>
+              </includes>
+            </configuration>
+          </execution>
+        </executions>
         <configuration>
-          <includes>
-            <include>**/*Test.java</include>
-          </includes>
           <excludes>
             <exclude>**/Abstract*.java</exclude>
             <exclude>**/InstallPluginsMojoTest.java</exclude>
@@ -240,7 +247,6 @@
       </plugin>
     </plugins>
   </build>
-  
   <profiles>
     <profile>
       <id>run-its</id>
@@ -248,12 +254,19 @@
         <plugins>
           <plugin>
             <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <includes>
-                <include>**/*IT.java</include>
-                <include>**/*Test.java</include>
-              </includes>
-            </configuration>
+            <executions>
+              <execution>
+                <phase>integration-test</phase>
+                <goals>
+                  <goal>test</goal>
+                </goals>
+                <configuration>
+                  <includes>
+                    <include>**/*IT.java</include>
+                  </includes>
+                </configuration>
+              </execution>
+            </executions>
           </plugin>
           <plugin>
             <artifactId>maven-plugin-plugin</artifactId>
@@ -263,7 +276,7 @@
                 <id>generated-helpmojo</id>
                 <configuration>
                   <extractors>
-                    <extractor/>
+                    <extractor />
                   </extractors>
                 </configuration>
               </execution>