繁体   English   中英

使用javafx-maven-plugin创建Javafx本机安装程序时,如何指定JNLP输出文件?

[英]How to specify the JNLP output file when using javafx-maven-plugin for creating a javafx native installer?

我正在使用Maven插件https://github.com/javafx-maven-plugin/javafx-maven-plugin生成javafx应用程序的安装程序。 我可以创建一个exe并成功运行它。 问题是我无法生成jnlp文件。 我看到以下讯息

[INFO] Skipping WebStart JNLP Bundler because of configuration error No OutFile Specificed
Advice to Fix: Please specify the name of the JNLP Outut file in 'jnlp.outfile'

我在哪里以及如何设置JNLP输出文件的名称?

为了生成JNLP文件,您必须稍微调整一下配置:

<plugin>
    <groupId>com.zenjava</groupId>
    <artifactId>javafx-maven-plugin</artifactId>
    <version>8.2.0</version>
    <configuration>
        <mainClass>com.zenjava.test.Main</mainClass>
        <verbose>true</verbose>
        <appName>YourAwesomeProject</appName>
        <bundleArguments>
            <!-- to include "dtjava.js" and other related files, set this to TRUE -->
            <jnlp.includeDT>true</jnlp.includeDT>

            <!-- the JNLP-bundler needs this, they don't use "appName" for the filename ... you have to set this, otherwise it doesn't build -->
            <!-- for details of that JNLP-bundler, please have a look at the source -->
            <!-- https://github.com/Debian/openjfx/blob/e32fd960e20c58c9b7db27e426b4bca6d52add2f/modules/fxpackager/src/main/java/com/oracle/tools/packager/jnlp/JNLPBundler.java#L84 -->
            <jnlp.outfile>YourAwesomeProject</jnlp.outfile>
        </bundleArguments>
    </configuration>
</plugin>

您需要调用mvn jfx:native而不是mvn jfx:web因为Oracle正在将JNLP代移到新的内部形式,从而删除了一些com.sun。*-packages。

要仅生成JNLP,可以通过在配置内部指定<bundler>jnlp</bundler>来减少构建时间。

免责声明:我是该Maven插件的维护者。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM