Hello!
Could somebody please tell me why the following code from project.xml still
tries to compile several hundred test classes when I run
"maven clean test:compile"? As far as I understand the <includes>'s and
<excludes>'s, this should exclude all files and it should not compile
anything, right?
<unitTestSourceDirectory>src</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/*</exclude>
</excludes>
<resources>
<resource>
<directory>src</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</unitTest>
Thanks in advance!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]