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
|
||||
generateInstaller = true
|
||||
administratorRequired = false
|
||||
additionalResources = [ file('src/main/resources/xyz/brysonsteck/ServerCraft/') ]
|
||||
|
||||
linuxConfig {
|
||||
pngFile = file('app/src/main/resources/icon.png')
|
||||
pngFile = file('src/main/resources/icon.png')
|
||||
}
|
||||
|
||||
macConfig {
|
||||
icnsFile = file('app/src/main/resources/icon.icns')
|
||||
volumeIcon = file('app/src/main/resources/icon.icns')
|
||||
backgroundImage = file('app/src/main/resources/dmg.png')
|
||||
icnsFile = file('src/main/resources/icon.icns')
|
||||
volumeIcon = file('src/main/resources/icon.icns')
|
||||
backgroundImage = file('src/main/resources/dmg.png')
|
||||
codesignApp = false
|
||||
developerId = 'Bryson Steck'
|
||||
appId = 'xyz.brysonsteck.ServerCraft'
|
||||
}
|
||||
|
||||
winConfig {
|
||||
icoFile = file('app/src/main/resources/icon.ico')
|
||||
icoFile = file('src/main/resources/icon.ico')
|
||||
setupMode = 'askTheUser'
|
||||
disableDirPage = false
|
||||
disableFinishedPage = false
|
||||
|
|
Loading…
Add table
Reference in a new issue