我用Gradle创建了一个JavaFX应用程序,想将其导出到exe沿着所有依赖项和JRE,最好的方法是什么?
我尝试使用Gradle-launch 4j提供的快速入门,但exe无法启动,它确实在IDE中启动,当我从命令行运行时,我收到错误JavaFX modules are needed to run the application
这是我的build.gradle脚本
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.5'
id 'edu.sc.seis.launch4j' version '2.4.6'
}
group 'Starter Apps'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
mainClassName = "$moduleName/controllers.Main"
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile (group: 'com.jfoenix', name: 'jfoenix', version: '9.0.8'){
exclude group: 'org.openjfx'
}
compile ('de.jensd:fontawesomefx-controls:11.0'){
exclude group: 'org.openjfx'
}
compile ('de.jensd:fontawesomefx:8.9'){
exclude group: 'org.openjfx'
}
compile ('de.jensd:fontawesomefx-icons525:4.6.3'){
exclude group: 'org.openjfx'
}
compile (group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'){
exclude group: 'org.openjfx'
}
}
//create a single Jar with all dependencies
task fatJar(type: Jar) {
manifest {
attributes 'Implementation-Title': 'Gradle Jar File Example',
'Implementation-Version': version,
'Main-Class': "controllers.Main"
}
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
version = '11.0.+'
}
launch4j {
headerType='console'
outfile = "Burj2.exe"
icon = "${projectDir}/src/main/resources/images/icon.ico"
jar = '../libs/Master_Mode_System_Config-all-1.0-SNAPSHOT.jar'
}
这里是我的module-info.java
module Master_Mode_System_Config {
requires javafx.controls;
requires javafx.fxml;
requires java.mail;
requires com.jfoenix;
opens controllers to javafx.fxml;
exports controllers;
}
应用程序在IDE上运行良好,我真的很困惑,为什么这是一个问题。如果你能帮忙的话,我将不胜感激。
2条答案
按热度按时间enxuqcxy1#
使用以下更改更新您的build.gradle。由于它是一个JavaFx应用程序,因此不能是控制台类型。它应该是gui类型,我已经在下面更新。您必须提供主类名(具有main方法的类名)和完整的包名。一旦你运行,你将能够看到exe文件,你可以启动它。
eit6fx6z2#
如何解决错误:缺少JavaFX运行时组件,运行此应用程序需要这些组件:
1.创建一个新类(例如
Main
),它没有用main方法扩展Application
。1.从
Main.main
调用App.main
(App extends Application)方法。1.现在运行调用
Main.main
的应用程序。