我使用Netbeans IDE v.8.1创建了一个新的JavaFX maven项目。然后,我从the plugin's official GitHub site
复制粘贴javafx-maven-plugin
定义
<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>8.1.4</version>
<configuration>
<mainClass>com.chat.test.MainApp</mainClass>
</configuration>
<executions>
<execution>
<id>create-jfxjar</id>
<phase>package</phase>
<goals>
<goal>build-jar</goal>
</goals>
</execution>
</executions>
</plugin>
问题是当我运行测试项目时出现以下错误
Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project test: The parameters 'executable' for goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec are missing or invalid -> [Help 1]
我已将测试项目推送到GitHub repository,您可以克隆并运行它。