How to use maven surefire plugin with different groups for test and integration-test? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T04:16:53Zhttp://stackoverflow.com/feeds/question/412717http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/412717/how-to-use-maven-surefire-plugin-with-different-groups-for-test-and-integration-t4How to use maven surefire plugin with different groups for test and integration-test?Arne Burmeister2009-01-05T10:11:31Z2009-07-30T20:36:17Z
<p>I want to use <strong><a href="http://testng.org/" rel="nofollow">testng</a></strong> with the <a href="http://maven.apache.org/plugins/maven-surefire-plugin/" rel="nofollow">surefire-plugin</a> of maven. The idea is to tag some tests with a group <code>integrationTest</code> and run the plugin twice: for goal <code>test</code> excluding the group <code>integrationTest</code> and for goal <code>integration-test</code> including the group <code>integrationTest</code> only.</p>
<p>I found some <a href="http://docs.codehaus.org/pages/viewpage.action?pageId=62120" rel="nofollow">material</a> for running the plugin for both goals and that works, but the group for the second run does not work (no test is executed).</p>
<p>Here is the plugin configuration in the build element of my <code>pom.xml</code>:</p>
<pre><code> <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludedGroups>integrationTest</excludedGroups>
<reportFormat>brief</reportFormat>
<trimStackTrace>true</trimStackTrace>
<useFile>false</useFile>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<groups>integrationTest</groups>
<excludedGroups/>
<reportsDirectory>${project.build.directory}/surefire-reports/integration</reportsDirectory>
</configuration>
</execution>
</executions>
</plugin>
</code></pre>
<p>Any idea? <code>mvn integration-test</code> runs all unit tests as expected (excluding the group <code>integrationTest</code>) but the second test run just writes:</p>
<blockquote>
<p>Running TestSuite<br />
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.562 sec</p>
</blockquote>
<p>The Result of <code>mvn test</code> is as expected, tests run and group <code>integrationTest</code> is ignored.</p>
http://stackoverflow.com/questions/412717/how-to-use-maven-surefire-plugin-with-different-groups-for-test-and-integration-t/415858#4158581Answer by Arne Burmeister for How to use maven surefire plugin with different groups for test and integration-test?Arne Burmeister2009-01-06T08:55:45Z2009-01-06T08:55:45Z<p>I got it - damn configuration implementation!</p>
<p><code><excludedGroups/></code> doeas not override <code><excludedGroups>integrationTest</excludedGroups></code>, you need to specify any (unknown) group instead, <code><excludedGroups>none</excludedGroups></code> for example.</p>