fixed paths hopefully
This commit is contained in:
parent
2e0f2a2659
commit
966571cac7
1 changed files with 7 additions and 5 deletions
|
@ -79,21 +79,23 @@ task pack(type: io.github.fvarrui.javapackager.gradle.PackageTask, dependsOn: bu
|
||||||
bundleJre = true
|
bundleJre = true
|
||||||
generateInstaller = true
|
generateInstaller = true
|
||||||
administratorRequired = false
|
administratorRequired = false
|
||||||
|
additionalResources = [ file('src/main/resources/xyz/brysonsteck/ServerCraft/') ]
|
||||||
|
|
||||||
linuxConfig {
|
linuxConfig {
|
||||||
pngFile = file('app/src/main/resources/icon.png')
|
pngFile = file('src/main/resources/icon.png')
|
||||||
}
|
}
|
||||||
|
|
||||||
macConfig {
|
macConfig {
|
||||||
icnsFile = file('app/src/main/resources/icon.icns')
|
icnsFile = file('src/main/resources/icon.icns')
|
||||||
volumeIcon = file('app/src/main/resources/icon.icns')
|
volumeIcon = file('src/main/resources/icon.icns')
|
||||||
backgroundImage = file('app/src/main/resources/dmg.png')
|
backgroundImage = file('src/main/resources/dmg.png')
|
||||||
|
codesignApp = false
|
||||||
developerId = 'Bryson Steck'
|
developerId = 'Bryson Steck'
|
||||||
appId = 'xyz.brysonsteck.ServerCraft'
|
appId = 'xyz.brysonsteck.ServerCraft'
|
||||||
}
|
}
|
||||||
|
|
||||||
winConfig {
|
winConfig {
|
||||||
icoFile = file('app/src/main/resources/icon.ico')
|
icoFile = file('src/main/resources/icon.ico')
|
||||||
setupMode = 'askTheUser'
|
setupMode = 'askTheUser'
|
||||||
disableDirPage = false
|
disableDirPage = false
|
||||||
disableFinishedPage = false
|
disableFinishedPage = false
|
||||||
|
|
Loading…
Add table
Reference in a new issue