使用Ant脚本部署JavaFX应用程序



我正试图用Ant为我的JavaFX应用程序生成一个可执行jar,我的jar与JavaFX Packager生成的jar的区别在于后者包含com.JavaFX.main包中的类。我如何在Ant脚本中告知将这些类也包含在jar中?

您使用的ant文件必须有特殊的fx任务来部署jar,而不是ant内置的jar任务。下面是一个使用JavaFX:生成jar的蚂蚁目标示例

<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

相关内容

  • 没有找到相关文章

最新更新