You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by st...@apache.org on 2011/02/19 21:42:42 UTC

svn commit: r1072437 - /myfaces/extensions/cdi/trunk/test-modules/cargo-test-module/pom.xml

Author: struberg
Date: Sat Feb 19 20:42:42 2011
New Revision: 1072437

URL: http://svn.apache.org/viewvc?rev=1072437&view=rev
Log:
EXTCDI-141 use maven-failsafe-plugin for running integration tests

Modified:
    myfaces/extensions/cdi/trunk/test-modules/cargo-test-module/pom.xml

Modified: myfaces/extensions/cdi/trunk/test-modules/cargo-test-module/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/cdi/trunk/test-modules/cargo-test-module/pom.xml?rev=1072437&r1=1072436&r2=1072437&view=diff
==============================================================================
--- myfaces/extensions/cdi/trunk/test-modules/cargo-test-module/pom.xml (original)
+++ myfaces/extensions/cdi/trunk/test-modules/cargo-test-module/pom.xml Sat Feb 19 20:42:42 2011
@@ -94,16 +94,21 @@
 
             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-surefire-plugin</artifactId>
-               <version>2.6</version>
+               <artifactId>maven-failsafe-plugin</artifactId>
+               <version>2.7.2</version>
                <executions>
                    <execution>
                        <id>htmlunit-integration-tests</id>
                        <phase>integration-test</phase>
                        <goals>
-                           <goal>test</goal>
+                           <goal>integration-test</goal>
                        </goals>
                        <configuration>
+                           <includes>
+                               <include>
+                                   **/*Test*.java
+                               </include>
+                           </includes>
                            <skip>false</skip>
                            <testNGArtifactName>none:none</testNGArtifactName>
                            <systemPropertyVariables>
@@ -113,6 +118,12 @@
                            </systemPropertyVariables>
                        </configuration>
                    </execution>
+                   <execution>
+                       <id>verify</id>
+                       <goals>
+                           <goal>verify</goal>
+                       </goals>
+                   </execution>
                </executions>
             </plugin>
         </plugins>