我正在寻找一个可以自行执行良好 JVM 参数的 Maven 插件。现在,我已经尝试使用maven-compiler-plugin
and the maven-surefire-plugin
(我的项目的 pom 在下面)。
我希望 jvm 执行的参数类型是这样的:
--module-path="C:\Program Files\Java\javafx-sdk-11\lib" --add-modules=javafx.controls
为了启动 javafx 应用程序。
与pom.xml
插件测试。
<build>
<plugins>
//tests with the surefire plugin (without tests).
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<skipTests>true</skipTests>
<argLine>--module-path="C:\Program Files\Java\javafx-sdk-11\lib" --add-modules=javafx.controls</argLine>
</configuration>
</plugin>
</plugins>
</build>