tags:

views:

31

answers:

1

I just read so many posts about installers for a Java App and I'd like to get some opinions as for the best choices. My requirements aren't too long. I just need: - the installer to install Java, MySQL and run the database script file; - create a shortcut for my Java App.

I'm most looking for open source/free choices.

A: 

Look into NSIS. It's pretty easy to use, it can call out to other installers (so the user just has to follow those other dialogs to completion), and it can create shortcuts. It's actually quite powerful.

It generates installers for Windows only, though; no DEBs or RPMs.

Jonathan