> <artifactId>maven-surefire-plugin</artifactId> > <configuration> > > <testSourceDirectory>src/test/whatever</testSourceDirectory>
This is simply not where testSourceDirectory goes in the pom. The Surefire plugin does not look for this value where you've put it, therefore it has no effect on your build which is correct. Refer to the XSD [1] (search for testSourceDirectory) and the Surefire plugin docs [2]. [1] http://maven.apache.org/xsd/maven-4.0.0.xsd [2] http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#testSourceDirectory Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
