我有一个使用Maven构建的Java项目。我想在“javac”命令行中添加选项 - 特别是,我想传递一些“-J”选项。
通常我会这样做:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-J-Xdebug</compilerArgument>
<compilerArgument>-J-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</compilerArgument>
</configuration>
</plugin>
然而,当我尝试这个时,我得到了错误的形式:
[ERROR] Failure executing javac, but could not parse the error:
javac: invalid flag: -J-Xdebug
Usage: javac <options> <source files>
use -help for a list of possible options
经过仔细研究,似乎maven-compiler-plugin将所有编译器参数写入选项文件,并调用javac,如'javac @optionfile'。根据{{3}}的javac官方文档:
@argfiles 一个或多个列出选项和源文件的文件。这些文件中不允许使用-J选项。
所以看起来maven-compiler-plugin中的选项不起作用 - 它想要使用arg文件,arg文件不能包含我想要的选项。
我也看到了一些使用地图的建议 - 但是当我尝试使用时,这会有类似的结果。
还有其他选择吗?
答案 0 :(得分:4)
编译器插件允许你specify the location of the jdk,所以你可以使用这样的东西:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<verbose>true</verbose>
<fork>true</fork>
<executable><!-- path-to-javac-invoking-script --></executable>
<compilerVersion>1.3</compilerVersion>
</configuration>
</plugin>
并为它提供一个脚本/ bat文件的路径,该文件将所有参数传递给真正的javac以及你的额外参数?
编辑 - the original issue已在编译器插件2.4+中得到修复,这应该可以立即使用而无需我的解决方法