Hello,
I have a surefire configuration like this
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/integration/selenium/**/*Test.java</exclude>
</excludes>
</configuration>
</plugin>
The idea is to exclude selenium tests during unit test execution. By
accident we did not follow our own naming convention and have placed some
tests that do not end in Test.java and so these should not be excluded. But
to my surprise these tests are excluded as well. Is this to be expected?
Thanks.
--
View this message in context:
http://www.nabble.com/maven-surefire-plugin-excludes-too-many-tests--tp20724511p20724511.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]