3

Ant を使用して JavaFX アプリケーション用の実行可能 jar を生成しようとしています。私の jar と JavaFX Packager によって生成されたものとの違いは、後者には com.javafx.main パッケージのクラスが含まれていることです。Ant スクリプトで、これらのクラスを jar にも含めるようにするにはどうすればよいですか?

4

1 に答える 1

3

使用している ant ファイルには、ant 組み込みの jar タスクではなく、jar をデプロイするための特別な fx-tasks が必要です。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 に答える