在javafx应用程序上设置自定义图标

时间:2017-07-27 15:31:57

标签: maven intellij-idea javafx-8

我尝试在macos上构建本机包并添加自定义图标而不是默认java。

我将我的128x128 icns文件放在src / main / deploy / package / macosx中,在pom.xml中添加javafx-maven-plugin并运行命令mvn jfx:build-native(或mvn jfx:native)。没有任何反应。意味着它已成功构建,但仍使用默认图标。我做错了什么?

这是我的pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>StarWars</groupId>
    <artifactId>Minesweeper</artifactId>
    <version>1.0</version>
    <packaging>jar</packaging>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <mainClass>example.minesweeper.Main</mainClass>
        <application.title>${project.artifactId}</application.title>
        <copyright>Han Solo</copyright>
    </properties>

    <organization>
        <name>Star Wars</name>
    </organization>

    <name>Minesweeper</name>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.testfx</groupId>
            <artifactId>testfx-core</artifactId>
            <version>4.0.6-alpha</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testfx</groupId>
            <artifactId>testfx-junit</artifactId>
            <version>4.0.6-alpha</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>com.zenjava</groupId>
                <artifactId>javafx-maven-plugin</artifactId>
                <version>8.8.3</version>
                <configuration>
                    <vendor>AndreySerebryanskiy</vendor>
                    <mainClass>example.minesweeper.Main</mainClass>
                    <deployDir>${project.basedir}/src/main/deploy</deployDir>
                </configuration>
            </plugin>
        </plugins>


    </build>


</project>

here是我项目结构的屏幕截图。

顺便说一下,我使用的是IntelliJ IDEA 2017.1.4。我也看到了这一系列问题:

  1. JavaFX native bundle icon OS X
  2. including an icon into a self-contained JavaFX application (.exe) 我也尝试将package / macosx放在项目文件夹中,但它没有用。
  3. How to set custom icon for javafx native package icon on Windows
  4. 我还看到了一种在NetBeansIDE中完成此任务的简单方法(例如here)。但是我不想因为这么简单的问题而改变IDE。 提前谢谢!

    修改31.07

    在打开详细模式后,我发现它正在期待Minesweeper-1.0.icns而不是Minesweeper.icns。在javafx-maven-plugin的conficurations中添加appName字段解决了我的问题。

1 个答案:

答案 0 :(得分:0)

您必须添加到javafx-maven-plugin配置中。

        <plugin>
            <groupId>com.zenjava</groupId>
            <artifactId>javafx-maven-plugin</artifactId>
            <version>8.8.3</version>
            <configuration>
                <vendor>AndreySerebryanskiy</vendor>
                <mainClass>example.minesweeper.Main</mainClass>
                <deployDir>${project.basedir}/src/main/deploy</deployDir>
                <verbose>true</verbose><!-- always a good idea to have this set to true while debugging -->
                <appName>Minesweeper</appName>
            </configuration>
        </plugin>

请确保您的ICNS文件名与<appName>内的文件名相同,然后只需拨打mvn jfx:native即可捆绑您的应用程序。