The surefire plugin is not honoring the <excludes>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<fork>true</fork>
<includes>
<include>**/*TestCase.java</include>
</includes>
<excludes>
<exclude implementation="java.lang.String">
com/foo/util/**
</exclude>
</excludes>
</configuration>
</plugin>
o The <exclude> is the same one used for the maven-compiler-plugin.
o mvn -X does not list the exclusion of the test source, just the source
[DEBUG] (f) excludes = [com/foo/util/**]
Paul Spencer
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]