> What I would like to be able to do is to have test classes to be packages > inside the ear. > I was hoping that by specifying 'earSourceDirectory' it will put the test > files inside the ear, but it's not happening. Below is my pom.xml. Tnx!
Generally, ears do not contain source code themselves, instead they simply aggregate other jars and wars into a single ear file. Move your test source code to another module, construct the test-jar there, and then add a dependency on it in the ear project. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
