> I've got a unit test that tests code that needs to read the META-INF/ > MANIFEST.MF file, but when I run "mvn test" the classes are compiled, > but the manifest file is not generated yet...
The creation of the manifest file is part of the packaging step, and as far as I know, there is no way execute it separately. I think you're at the point where you need to simply manually make your manifest file and then possibly filter some values into it if you need -- for example, the version of your project, injected in the file. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
