I need a way to package and distribute a Java program to a remote device. Web Start is not ideal as it only distributes Jars and requires Web Server. I need to distribute and run scripts during the installation and need some other types of files.
A:
I use maven religiously for packaging and distributing java programs. I typically only use it to push to a single location (my server), but it is a rather flexible tool. In particular the deploy plugin is what I use to do the push.
However, if you want something that can be used as an installer to package a whole bunch of prerequisites alongside your application, take a look at IzPack.
Clinton
2009-11-29 07:15:41
I meant something like InstallShield in the Java world.
arsenalfan
2009-12-09 15:36:09
Anybody used "Nullsoft Scriptable Install System"?Is it only Windows tool or can it work on Linux?
arsenalfan
2009-12-10 06:47:04
+1
A:
I see that there was a discussion on this issue before: http://stackoverflow.com/questions/3767/what-is-the-best-choice-for-building-windows-installers
arsenalfan
2009-12-13 06:31:07