I have configured manifest.mf file to add custome attributes as mentioned here: http://twit88.com/blog/2008/02/20/maven-adding-custom-attributes-and-build-timestamp-to-manifest/.
The problem i face is, the entries are populated in the manifest.mf file inside classes/META-INF. But the manifest.mf file inside test-classes/META-INF still have the variables not replaced by values.
For running the tests, i need test resources generated, but manifest.mf file inside test-classes/META-INF is not populated for the test goals.
Can anyone please suggest a way to configure manifest.mf file for tests????
Note that i have already tried adding "generate-test-resources" phase for maven-antrun-plugin but it didnt work.
Thanks.