有两个不同的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>
我该怎么做才能让两个安装程序安装为不同的应用程序,而不是彼此相互接触。
答案 0 :(得分:0)
发现zen java maven插件使用Main
类包作为应用程序的唯一标识符,在这种特殊情况下,两个应用程序都具有相同的包名称。
更改一个应用程序的包解决了我的问题。