I am migrating a medium-sized version of a Java application from Ant to Maven. I could easily transfer the main building material, but I would also like to create installer packages from the Maven assembly. The easiest way is to invoke Ant source scripts through the Ant plugin, but I thought that maybe I should first check out some Maven support.
I need to create several different installers for different platforms:
- Windows 32/64 bit
- Linux 32/64 bit
- MacOS 32/64 bit
For Linux, now I think that we only have tar.gz and some Bash scripts for running daemons - the Debian / RPM package will be much nicer, maybe with dependent package definitions. For Windows installers, we use the NullSoft installer. I have no idea how the MacOS package is going.
Are there any tools for this (or at least partially) from Maven?
source
share