How to use maven surefire plugin with different groups for test and integration-test? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T04:16:53Z http://stackoverflow.com/feeds/question/412717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/412717/how-to-use-maven-surefire-plugin-with-different-groups-for-test-and-integration-t 4 How to use maven surefire plugin with different groups for test and integration-test? Arne Burmeister 2009-01-05T10:11:31Z 2009-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> &lt;plugin&gt; &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt; &lt;configuration&gt; &lt;excludedGroups&gt;integrationTest&lt;/excludedGroups&gt; &lt;reportFormat&gt;brief&lt;/reportFormat&gt; &lt;trimStackTrace&gt;true&lt;/trimStackTrace&gt; &lt;useFile&gt;false&lt;/useFile&gt; &lt;/configuration&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;integration-test&lt;/id&gt; &lt;phase&gt;integration-test&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;test&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;groups&gt;integrationTest&lt;/groups&gt; &lt;excludedGroups/&gt; &lt;reportsDirectory&gt;${project.build.directory}/surefire-reports/integration&lt;/reportsDirectory&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </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#415858 1 Answer by Arne Burmeister for How to use maven surefire plugin with different groups for test and integration-test? Arne Burmeister 2009-01-06T08:55:45Z 2009-01-06T08:55:45Z <p>I got it - damn configuration implementation!</p> <p><code>&lt;excludedGroups/&gt;</code> doeas not override <code>&lt;excludedGroups&gt;integrationTest&lt;/excludedGroups&gt;</code>, you need to specify any (unknown) group instead, <code>&lt;excludedGroups&gt;none&lt;/excludedGroups&gt;</code> for example.</p>