2010/10/25 Dirk Reske <[email protected]>: > Because a module with packaging ear, does not look for a src/test/java > directory (But if, where goes the compiled classes to in the ear file).
Good point :-D You can anyway configure your integration testing through the use of the failsafe plugin: http://maven.apache.org/plugins/maven-failsafe-plugin/ that focuses on integration testing and runs tests *after* packaging, in the verify phase. You can start the container in pre-integration-test phase, run tests in integration-test and stop the server in post-integration-test. Antonio --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
