Reputation: 21
I am trying to find a native installer for windows to install an enterprise java application. The most important feature I want is the ability to upgrade existing installations in an rpm kind of way (distinguish between configuration files and files to be upgraded/replaced). I am currently using IZPack which as far as I can see lacks this feature.
Other features I require are maven/ant integration, jre version check and bundling, registering as windows server and application (ability to uninstall from windows own tools) and ability to parse and replace parameters in configuration files based on parameters givet at install time.
Do anyone know of an installer that can do all of this?
Upvotes: 2
Views: 325
Reputation: 3391
BitRock InstallBuilder can do nearly everything that you mention out of the box, about half of our customers use it to install Java apps on Windows. We do not support the RPM behavior of marking certain files as configuration, but you can replicate this with a little bit of logic inside the installer (you can compare dates or md5s and only substitute if they are different.) We provide free licenses to open source projects and discounts to SMBs, let us know in case you qualify.
Upvotes: 0
Reputation:
It costs money (it definitely couldn't be classed as cheap), but you could consider InstallAnywhere. I'm using the 2008 pro edition and it does pretty much everything you've specified. I started using it ages ago, and haven't
Upvotes: 0
Reputation: 165202
Check out NSIS. It is scriptable and easy to use.
For Maven integration use the Maven NSIS Plug-in.
Upvotes: 5