Fix app name for jlinkZip gradle task

This commit is contained in:
Denis-Cosmin Nutiu 2024-03-23 22:07:33 +02:00
parent 27e8ce27e4
commit 5ed8fc161c
3 changed files with 3 additions and 2 deletions

2
.idea/.gitignore vendored
View file

@ -6,3 +6,5 @@
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# GitHub Copilot persisted chat sessions
/copilot/chatSessions

View file

@ -5,7 +5,6 @@
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="corretto-21" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />

View file

@ -60,7 +60,7 @@ jlink {
imageZip = project.file("${buildDir}/distributions/app-${javafx.platform.classifier}.zip")
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
launcher {
name = 'app'
name = 'ImageTagger'
}
}