How to bundle Java application for Mac/Windows?

Check out Package Maker for Mac and Advanced Installer for Windows.

I've used them both for just about every requirement you've listed.

I haven't used them for auto-updates, but you probably have to build that logic into your app.

Don't expect them to do ALL of the work for you, though.

Expect to spend quite a bit of time building an installer for each platform.

I'm sure there are lots of options for Windows and Linux. Advanced Installer just happens to be the only one I've used.

I believe Package Maker is the standard for Mac. It's pretty awesome and easy to use.

Good luck!


For deploying on Windows, I like using Launch4j for wrapping my application jar and creating a native Windows executable that can detect and use an already installed JRE, or allows you to bundle your own. It's fast, lightweight and easily scripted with Ant (or Maven) as part of your build process.

Combined with this, I typically use NSIS for creating an installer that puts in shortcuts, and allows install/uninstall/repair from Control Panel. With a bit of work, this can also be scripted via Ant, and can also be built from a Linux platform.

These solutions obviously won't work for Mac deployment, but I suspect you'll have to use different tools for the different platforms if you want the best experience for the end users.


I have researched this for a while so that I can install the application in Linux and Windows. The best alternatives I found were -

  • Izpack

You can find information how to use it native in this blogpost. But installing it in Linux got me to use a .sh script. As for mac my knowledge is limited. Hope this helps.