我正在尝试使用 Ant 为我的 JavaFX 应用程序生成一个可执行 jar,我的 jar 与 JavaFX Packager 生成的 jar 之间的区别在于后者包含来自 com.javafx.main 包的类。如何在我的 Ant 脚本中告诉我在 jar 中也包含这些类?
问问题
2295 次
1 回答
3
您使用的 ant 文件必须具有特殊的 fx-tasks 才能部署 jar,而不是 ant 内置 jar 任务。这是使用 JavaFX 生成 jar 的示例 ant 目标:
<target name="jar" depends="compile">
<echo>Creating the main jar file</echo>
<mkdir dir="${distro.dir}" />
<fx:jar destfile="${distro.dir}/main.jar" verbose="true">
<fx:platform javafx="2.1+" j2se="7.0"/>
<fx:application mainClass="${main.class}"/>
<!-- What to include into result jar file?
Everything in the build tree-->
<fileset dir="${classes.dir}"/>
<!-- Define what auxilary resources are needed
These files will go into the manifest file,
where the classpath is defined -->
<fx:resources>
<fx:fileset dir="${distro.dir}" includes="main.jar"/>
<fx:fileset dir="." includes="${lib.dir}/**" type="jar"/>
<fx:fileset dir="." includes="."/>
</fx:resources>
<!-- Make some updates to the Manifest file -->
<manifest>
<attribute name="Implementation-Vendor" value="${app.vendor}"/>
<attribute name="Implementation-Title" value="${app.name}"/>
<attribute name="Implementation-Version" value="1.0"/>
</manifest>
</fx:jar>
</target>
请注意,您必须在脚本中的某处定义 taskdef:
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml"
uri="javafx:com.sun.javafx.tools.ant"
classpath="${javafx.sdk.path}/lib/ant-javafx.jar"/>
并且项目标签必须具有 fx xmlns 参考:
<project name = "MyProject" default ="compile" xmlns:fx="javafx:com.sun.javafx.tools.ant">
生成的 jar 文件现在应该包含 javafx.main 中的类,并且清单会将它们作为应用程序的入口点包含在内。更多信息: http ://docs.oracle.com/javafx/2/deployment/packaging.htm
于 2013-09-15T18:38:45.097 回答