Convert java application to mac installer ... dmg

I would like to know if we have any software to convert a java application. I mean the .jar file in the .dmg file (installer for mac). Thanks at Advance.

+5
java dmg macos
source share
3 answers

The .dmg file is not an installer, it is a disk image file . If you want to make something available for distribution, the easiest way is to create a new folder (directory), copy all the files and folders that you want to distribute into it, and then use either OS X Disk Utility (in / Applications / Utilities) or on the hdiutil command line to create a new disk image from the contents of the folder.

+5
source share

Use the "Jar Bundler" in downloading Xcode from the Apple Developer Connection application.

http://developer.apple.com/technology/xcode.html

You will need to register for a free account.


Steps: http://www.centerkey.com/mac/java/

+2
source share

You can use the Macify Maven plugin .

0
source share

Source: https://habr.com/ru/post/649974/


All Articles