javafx-maven-plugin更新错误的文件夹

时间:2018-01-30 09:06:01

标签: java javafx-8 maven-plugin

有两个不同的javafx应用程序使用javafx-maven-plugin生成本机Windows安装程序。在这两个应用程序中,都会生成安装程序,并且可以在target\jfx\native处看到。

启动第一个应用安装程序安装程序安装过程后,安装程序显示文件将复制到C:\Users\Yunus\AppData\Local\CooperativeERP

问题是当第二个应用程序安装过程启动时,它会转到同一个文件夹并更新一些文件,这会导致第一个应用程序安装无法使用。

插件Maven XML如下:

       <plugin>
            <groupId>com.zenjava</groupId>
            <artifactId>javafx-maven-plugin</artifactId>
            <version>8.6.0</version>
            <configuration>
                <mainClass>re.iprocu.coperativeerp.MainApp</mainClass>

                <bundleArguments>
                    <licenseFile>termsOfService.rtf</licenseFile>
                </bundleArguments>
                <additionalAppResources>src/main/additionalAppResources</additionalAppResources><!-- name does not matter, it's just some folder :D -->
                <!-- DO SHOW DEBUG-OUTPUT -->
                <verbose>true</verbose>
            </configuration>
            <executions>
                <execution>
                    <!-- required before build-native -->
                    <id>create-jfxjar</id>
                    <phase>package</phase>
                    <goals>
                        <goal>build-jar</goal>
                    </goals>
                </execution>

                <execution>
                    <id>create-native</id>
                    <phase>package</phase>
                    <goals>
                        <goal>build-native</goal>
                    </goals>
                </execution>

            </executions>
        </plugin>

我该怎么做才能让两个安装程序安装为不同的应用程序,而不是彼此相互接触。

1 个答案:

答案 0 :(得分:0)

发现zen java maven插件使用Main类包作为应用程序的唯一标识符,在这种特殊情况下,两个应用程序都具有相同的包名称。

更改一个应用程序的包解决了我的问题。