Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,16 @@ jlink {
installerOptions = [
'--win-menu',
'--win-menu-group', 'CodeDead',
'--win-shortcut',
'--win-shortcut-prompt',
'--win-upgrade-uuid', '876c5464-9a66-4913-89a4-c63a4b8b4bb9',
'--win-help-url', 'https://codedead.com/contact',
'--win-dir-chooser',
'--copyright', 'Copyright (c) 2023 CodeDead',
'--description', 'Opal is a free and open-source JavaFX application that can play relaxing music in the background',
'--vendor', 'CodeDead',
'--license-file', 'LICENSE',
'--app-version', "${project.version.toString()}"
'--app-version', "${project.version.toString()}",
'--about-url', 'https://codedead.com'
]
}
} else if (currentOS.isLinux()) {
Expand All @@ -74,7 +77,8 @@ jlink {
'--description', 'Opal is a free and open-source JavaFX application that can play relaxing music in the background',
'--vendor', 'CodeDead',
'--license-file', 'LICENSE',
'--app-version', "${project.version.toString()}"
'--app-version', "${project.version.toString()}",
'--about-url', 'https://codedead.com'
]
}
}
Expand Down Expand Up @@ -122,7 +126,7 @@ repositories {
dependencies {
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
implementation 'io.github.mkpaz:atlantafx-base:1.2.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
}
Expand Down