gradle 如何在JavaFX 15-ea+3中设置应用程序图标

yzxexxkh  于 2022-11-14  发布在  Java
关注(0)|答案(2)|浏览(132)

我创建了一个JavaFX项目,其中包含以下详细信息:

一月一日/一月一日/一月二日/一月三日

此外,我还使用以下Gradle插件:

javafxplugin version 0.0.8/org.beryx.runtime version 1.8.2com.github.johnrengelman.shadow version 5.2.0(用于创建本机映像)

另外,JDK 14 jpackage工具用于为应用程序创建安装程序包,下面是build.gradle文件:

plugins {
    id 'java'
    id 'application'
    id 'org.openjfx.javafxplugin' version '0.0.8'
    id 'org.beryx.runtime' version '1.8.2'
    id "com.github.johnrengelman.shadow" version "5.2.0"
}

group 'com.pastor'
version '1.0-SNAPSHOT'

sourceCompatibility = 14
targetCompatibility = 14
//This option is for rendering persian characters encoding
compileJava.options.encoding = 'UTF-8'

javafx {
    version = "15-ea+3"
    modules = [ 'javafx.controls', 'javafx.fxml']
}

repositories {
    mavenCentral()
}

dependencies {
    runtimeOnly "org.openjfx:javafx-controls:$javafx.version:win"
    runtimeOnly "org.openjfx:javafx-fxml:$javafx.version:win"
    runtimeOnly "org.openjfx:javafx-media:$javafx.version:win"
    compile group: 'com.jfoenix', name: 'jfoenix', version: '9.0.9'
    compile 'de.jensd:fontawesomefx-fontawesome:4.7.0-9.1.2'
    compile 'de.jensd:fontawesomefx-icons525:4.2.0-9.1.2'
    compile 'de.jensd:fontawesomefx-materialdesignfont:2.0.26-9.1.2'
    compile 'de.jensd:fontawesomefx-materialicons:2.2.0-9.1.2'
    compile group: 'org.controlsfx', name: 'controlsfx', version: '11.0.1'
}

runtime {
    options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
    jpackage {
        if(org.gradle.internal.os.OperatingSystem.current().windows) {
            appVersion = '1.0.0'
            skipInstaller = false
            installerName = 'Pastor apartment unit management system'
            installerType = 'exe'
            installerOptions = ['--win-per-user-install', '--win-dir-chooser', '--win-menu', '--win-shortcut']
        }
    }
}
mainClassName = 'sample.Launcher'

我已经在jpackage块中尝试了imageOptions = ['--icon icon.ico'],但总是得到这种错误:

Error: Invalid Option: [--icon app.ico]

如有任何有用的建议或提示,我们将不胜感激。

koaltpgm

koaltpgm1#

我从来没有使用过这个插件,但我会尝试添加'--icon', 'icon.ico'到installerOptions,而不是imageOptions。

wvt8vs2t

wvt8vs2t2#

如果还不算太晚的话,或者对任何其他有这个问题的人来说,而不是

imageOptions = ['--icon icon.ico']

使用了

imageOptions = ['--icon', 'icon.ico']

这对我很有效。

相关问题