I want to replace an item in an existing jar/zip file while doing the maven build. What is the easiest way to achieve this? Thank you.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I don't think there is a dedicated plugin to do this but I would imagine you can use the exec plugin and information from Updating .class file in jar to accomplish this. |
|||
|
|
|
My favorite for this sort of tasks is maven-antrun-plugin which brings you complete ant functionality. You can use it like this:
But remember - never modify any files in your local repository - in this example pointed to by Such builds are also irreproducible (or hard to reproduce) on other machines. |
|||
|