<macConfig>
<!-- general properties -->
<appId>app unique identifier</appId>
<icnsFile>path/to/icon.icns</icnsFile>
<generateDmg>true|false</generateDmg>
<generatePkg>true|false</generatePkg>
<relocateJar>true|false</relocateJar>
<macStartup>SCRIPT|UNIVERSAL|X86_64|ARM64</macStartup>
<!-- signing properties -->
<developerId>singning identity</developerId>
<entitlements>path/to/entitlements.plist</entitlements>
<codesignApp>true|false</codesignApp>
<hardenedCodesign>true|false</hardenedCodesign>
<!-- properties used for DMG disk image generation -->
<backgroundImage>path/to/png</backgroundImage>
<windowX>x</windowX>
<windowY>y</windowY>
<windowWidth>width</windowWidth>
<windowHeight>height</windowHeight>
<iconSize>size</iconSize>
<textSize>size</textSize>
<iconX>x</iconX>
<iconY>y</iconY>
<appsLinkIconX>x</appsLinkIconX>
<appsLinkIconY>y</appsLinkIconY>
<volumeIcon>path/to/icns</volumeIcon>
<volumeName>${name}</volumeName>
<!-- properties used for Info.plist file generation -->
<infoPlist>
<bundlePackageType>BNDL|APPL|FMWK</bundlePackageType>
<additionalEntries>
<![CDATA[
<key>ThisIsABoolean</key>
<true/>
<key>ThisIsAString</key>
<string>value</string>
[...]
]]>
</addtionalEntries>
</infoPlist>
</macConfig>
Property | Mandatory | Default value | Description |
---|---|---|---|
icnsFile |
❌ | Icon file. | |
generateDmg |
❌ | true |
Enables DMG disk image file generation. |
generatePkg |
❌ | true |
Enables installation package generation. |
relocateJar |
❌ | true |
If true , Jar files are located in Contents/Resources/Java folder, otherwise they are located in Contents/Resources folder. |
appId |
❌ | ${mainClass} |
App unique identifier. |
Property | Mandatory | Default value | Description |
---|---|---|---|
developerId |
❌ | Signing identity. | |
entitlements |
❌ | Path to entitlements file. | |
codesignApp |
❌ | true |
If it is set to false , generated app will not be codesigned. |
hardenedCodesign |
❌ | true |
If it is set to true , enable hardened runtime if Mac OS version >= 10.13.6. |
macStartup |
❌ | SCRIPT |
App startup type, using a SCRIPT or a binary (compiled version of the script: UNIVERSAL , X86_64 or ARM64 ). |
Property | Mandatory | Default value | Description |
---|---|---|---|
backgroundImage |
❌ | classpath:/mac/background.png |
DMG background image. |
windowX |
❌ | 10 |
X coordinate of DMG window. |
windowY |
❌ | 50 |
Y coordinate of DMG window. |
windowWidth |
❌ | 540 |
Width of DMG window. |
windowHeight |
❌ | 360 |
Height of DMG window. |
iconSize |
❌ | 128 |
DMG icons size. |
textSize |
❌ | 16 |
DMG text size. |
iconX |
❌ | 52 |
X coordinate of bundled app icon. Relative to DMG window. |
iconY |
❌ | 116 |
Y coordinate of bundled app icon. Relative to DMG window. |
appsLinkIconX |
❌ | 360 |
X coordinate of Applications link. Relative to DMG window. |
appsLinkIconY |
❌ | 116 |
Y coordinate of Applications link. Relative to DMG window. |
volumeIcon |
❌ | ${icon} |
Bundled app icon in ICNS format. |
volumeName |
❌ | ${displayName} |
Volume name (:warning: whitespaces are removed). |
Property | Mandatory | Default value | Description |
---|---|---|---|
bundlePackageType |
❌ | BNDL | Bundle package type: BNDL, APPL, FMWK. |
additionalEntries |
❌ | "" |
String with Info.plist additional entries. |