我正在尝试使用Oracle JavaFX Ant Task.deb
生成一个文件,其中包含我的 JavaFX 应用程序的独立副本。fx:deploy
我已经按照官方文档中的示例进行操作,我的pom.xml
配置如下所示:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>install</phase>
<configuration>
<target xmlns:fx="javafx:com.sun.javafx.tools.ant">
<manifestclasspath property="manifest.classpath" jarfile="${application.dist}/${jar.name}.jar">
<classpath>
<path id="build.classpath">
<fileset dir="${application.dist}/lib">
<include name="*.jar"/>
</fileset>
</path>
</classpath>
</manifestclasspath>
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml"
uri="javafx:com.sun.javafx.tools.ant"
classpath="${project.basedir}:${javafx.lib.ant-javafx.jar}"/>
<fx:preferences id="fxPreferences" shortcut="true" menu="true" install="true"/>
<fx:jar destfile="${application.dist}/${jar.name}.jar">
<fx:application name="${application.title}"
mainClass="${application.main.class}"/>
<manifest>
<attribute name="Class-Path" value="${manifest.classpath}"/>
</manifest>
<!-- The target/classes folder which contains all resources and
class files -->
<fileset dir="${project.build.outputDirectory}"/>
</fx:jar>
<fx:resources id="appRes">
<fx:fileset dir="${classes.dir}" includes="*.ico"/>
<fx:fileset dir="${classes.dir}" includes="*.bat"/>
<fx:fileset dir="${classes.dir}" includes="*.conf"/>
<fx:fileset dir="${application.dist}" includes="*.jar"/>
<fx:fileset dir="${application.dist}" includes="lib/*.jar"/>
<fx:fileset dir="${java.home}/lib/ext" includes="sunjce_provider.jar" type="data"/>
<fx:fileset dir="${java.home}/bin" includes="java.exe" type="data"/>
<fx:fileset dir="${java.home}/bin" includes="javaw.exe" type="data"/>
<fx:fileset dir="${extra.dir}" includes="**"/>
</fx:resources>
<!-- This same fx:deploy task MUST be able to generate a Windows .EXE bundle as well -->
<fx:deploy verbose="true" embedJNLP="false" extension="false" includeDT="false"
offlineAllowed="true" outdir="${application.dist}"
outfile="${bundle.name}" nativeBundles="all" updatemode="background">
<fx:application name="${application.name}" mainClass="${application.main.class}"/>
<fx:resources refid="appRes"/>
<fx:preferences refId="fxPreferences" shortcut="true" menu="true"/>
<fx:info title="${application.title}" vendor="${application.vendor}"/>
<fx:platform javafx="8.0+">
<fx:jvmarg value="-Djava.security.debug=sunpkcs11"/>
</fx:platform>
</fx:deploy>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
在构建(mvn clean install
)结束时,该.deb
文件在文件夹中正确生成/target/dist/bundles
。
但是当我安装它时dpkg -i
,我的应用程序将安装在/opt/${bundle.name}
.
DEB 打包选项文档说默认安装位置是,/opt
但它没有告诉我如何更改它。
我的问题是:如何设置另一个安装路径来覆盖默认/opt
值?
例如,如果我可以将它安装在/opt/company/apps/${bundle.name}
.
我已经阅读了fx:bundleArgument
inside fx:deploy 的用法,它有固定的选项。但没有一个linux.*
选项与安装路径相关。
环境信息:
- Debian 8.10 杰西
- JDK 1.8.0_171 64 位
- dpkg-deb 1.17.27 (amd64)
- 阿帕奇 Maven 3.0.5