Due to a design issue outside of my control, the MANIFEST.MF
file populated by the Maven Archiver plugin (inside of Maven jar plugin) is overwritten.
Can I:
- move the file further down into the jar (i.e. from
/META-INF
to/src/home
or something) - Populate a different file with the contents that would normally go into
MANIFEST.mf
(i.e.src/home/something.txt
)
I've tried to change the <manifestFile>
property but that just merges the manifest from that location to the /META-INF
location.