> How can I make sure the manifest file gets generated before the unit tests > are executed? > > - the unit tests attempt to validate that Java code, but the manifest file is > not generated, it's only part of the JAR
Instead of running that test in this module's build, add another module alongside it that depends on this artifact, and run this test there. It will bring in the jar which, as you said, has the manifest in it. You will need a parent pom as well over both modules, and always build your project from the parent. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
