我正在构建一个 JavaFX 应用程序并通过JavaFX-Gradle-plugin使用 JavaFX 打包工具。我正在使用这种配置生成各种启动器:
jfx {
mainClass = "tech.dashman.dashman.ConfiguratorApp"
vendor = "Dashman"
appName = "Dashman"
nativeReleaseVersion = "1.0.0"
secondaryLaunchers = [
[
appName : "Dashman Renderer",
mainClass: "tech.dashman.dashman.RendererApp",
needMenu : true
],
[
appName : "Dashman Displayer",
mainClass: "tech.dashman.dashman.DisplayerApp",
needMenu : true
],
[
appName : "Dashman Screensaver",
mainClass: "tech.dashman.dashman.WinScreensaverApp",
needMenu : false
]
]
}
但最后一个,要成为一个合适的 Windows 屏幕保护程序,它需要有.scr
扩展名而不是.exe
. 如何在生成安装文件之前使用该名称生成它或重命名它?