I want to use testng with the surefire-plugin of maven. The idea is to tag some tests with a group integrationTest and run the plugin twice: for goal test excluding the group integrationTest and for goal integration-test including the group integrationTest only.
I found some material for running the plugin for both goals and that works, but the group for the second run does not work (no test is executed).
Here is the plugin configuration in the build element of my pom.xml:
<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>
Any idea? mvn integration-test runs all unit tests as expected (excluding the group integrationTest) but the second test run just writes:
Running TestSuite
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.562 sec
The Result of mvn test is as expected, tests run and group integrationTest is ignored.
