8

我试图在创建 javafx 打包的本机捆绑时尝试 exe 文件的图标。
我尝试将图标添加到pom.xml中,但直到它对我来说不起作用,因为它提供了command = mvn jfx:build-native 默认pom.xml图标

<build>
    <plugins>
        <plugin>
            <groupId>com.zenjava</groupId>
            <artifactId>javafx-maven-plugin</artifactId>
            <version>1.5</version>
            <configuration>

                <mainClass>com.demoApp.testapp.testApplication</mainClass>

                <!-- only required if signing the jar file -->
                <keyStoreAlias>example-user</keyStoreAlias>
                <keyStorePassword>example-password</keyStorePassword>
                <permissions>
                    <permission>all-permissions</permission>
                </permissions>
                <icon>${basedir}/src/main/resources/images/logoIcon.ico</icon>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>

    </plugins>
</build>

我在 pom.xml ${basedir}/src/main/resources/images/logoIcon.ico 中添加了一个图标路径,它将在本机包执行时运行,但对我来说不起作用

还有其他方法吗?请建议。


我使用 ant 在 pom.xml 中尝试了 fx 标签,这是我在 pom.xml 中的更改

<properties>

<javafx.tools.ant.jar>${env.JAVA_HOME}\lib\ant-javafx.jar</javafx.tools.ant.jar> </properties>


<plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.6</version>
                <executions>
                    <execution>
                        <id>create-launcher-jar</id>
                        <phase>package</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <target xmlns:fx="javafx:com.sun.javafx.tools.ant">
                                <taskdef
                                        uri="javafx:com.sun.javafx.tools.ant"
                                        resource="com/sun/javafx/tools/ant/antlib.xml"
                                        classpath="${javafx.tools.ant.jar}"/>
                                <fx:application id="fxApp"
                                                name="${project.name}"
                                                mainClass="com.precisionhawk.flightplanner.FlightPlannerApp"/>
                                <fx:jar destfile="${project.build.directory}/${project.build.finalName}-launcher">
                                    <fx:application refid="fxApp"/>
                                    <fx:fileset dir="${project.build.directory}/classes"/>
                                </fx:jar>
                                <attachartifact file="${project.build.directory}/${project.build.finalName}-launcher.jar"
                                                classifier="launcher"/>
                                <fx:deploy>
                                    <fx:info>
                                        <fx:icon href="${basedir}/src/main/deploy/logoIcon.ico"></fx:icon>
                                    </fx:info>

                                </fx:deploy>
                            </target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

但它不会解决..

4

3 回答 3

13

我只是在使用 Zonsky 出色的 javafx-maven-plugin 时遇到了同样的问题。从您也在使用的 1.5 版开始,src/main/deploy 目录将被添加到类路径中。您可以在此处添加您要使用的图标,它将在本机构建器的类路径中可用!

我在那里添加了 src/main/deploy/package/windows/myapp.ico ,它终于起作用了:)

为你:

  1. 创建src/main/deploy/package/windows/文件夹
  2. 添加带有名称的图标${project.build.finalName}.ico
  3. mvn jfx:build-native

我没有广泛使用它 - 只是让它工作并想分享。所以如果你想使用不同名称的图标,我不知道怎么做。至少现在还没有。config部分中的<icon>...</icon>部分似乎是针对webstart的,所以我一直没有使用它。希望你让它工作!

于 2013-05-10T07:23:24.150 回答
1

您需要在构建本机应用程序时查看日志记录。这将告诉您安装程序在哪里查找图标文件以及名称。对于默认的 Windows 本机应用程序,它在 ./package/windows/'appname'.ico 中查找 不记得 'appname' 来自何处,但只需在构建时查看日志记录,它就会告诉你。(我使用从我的 pom btw 调用的 Ant 目标)

于 2013-04-10T11:45:45.433 回答
0
     you can do this:
      `<plugin>
            <groupId>com.zenjava</groupId>
            <artifactId>javafx-maven-plugin</artifactId>
            <version>8.8.3</version>
            <configuration>
                <vendor>YourCompany</vendor>
                <mainClass>com.alan344.MapperGenApplication</mainClass>
                <appName>mybatis-friend</appName>
                <bundleArguments>
                    <icon>${project.basedir}/src/main/resources/image/icon.ico</icon>
                </bundleArguments>
            </configuration>
        </plugin>`
于 2019-08-21T07:40:20.400 回答