Is it possible to perform a patch release in maven? I would like to create a jar containing only one class which I have changed since the release.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is no generic way to do that, as far as I know. However, the simplest way to do that is to create a simple assembly that will create a JAR or a ZIP containing your classes. The assembly.xml will only need to include the specified class file:
(note that I didn't test this script) Then, after compiling ( |
|||
|
|
