Reputation: 17089
I have a Java desktop app that runs on both the MacOS and Windows.
I understand that I cannot have one distribution for each, which is not a requirement.
I need to know what tool or tools is best to use when delivering a Java app for each.
The tool should install prerequisites (in this case, Java and some JARs) and look native to the respective operating system.
Upvotes: 2
Views: 1059
Reputation: 34185
As for OS X's java situation:
As for how you should deploy java apps on OS X:
Upvotes: 5
Reputation: 60917
On Windows, I would recommend either JSmooth or WinRun4J.
On a Mac, the situation is a bit more complex (as the comments point out), but just distributing an executable JAR is probably good enough for now.
Upvotes: 1