On 19 January 2012 11:31, kooper <[email protected]> wrote: > hm, I've tried moving class to src/test/java folder once more and it works > now. Not sure why it wasn't previously, so thank you very much for advice. > > BTW can I configure fail-safe to check my directory also?
failsafe looks for .class files in target/test-classes you can configure failsafe to look elsewhere, but then you need to configure compiler-m-p to compile your classes from your custom location into your custom location. failsafe uses the different naming scheme as a way around having to have different layers. hence, it's tests are *IT, etc while surefire's are *Test, etc > > -- > View this message in context: > http://maven.40175.n5.nabble.com/fail-safe-plugin-does-not-see-test-tp5157259p5157424.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] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
