3
我有一個項目,我負責修復一些錯誤,另一個開發者負責其他錯誤。錯誤的數量遠遠超過一百,而且當我修復我的錯誤時,她的錯誤堆積如山。我現在正處在我看到她的99個錯誤和我的錯誤之一的位置,我認爲我很快就會達到100點。我看着使用這個配置對於行家:是否有可能讓maven接受maxerrs的編譯插件?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-Xmaxerrs 1000</compilerArgument>
</configuration>
</plugin>
但沒有骰子:
Failure executing javac, but could not parse the error:
javac: invalid flag: -Xmaxerrs 1000
Usage: javac <options> <source files>
use -help for a list of possible options
在命令行中使用javac時,maxerrs標誌按預期工作,但我似乎無法使跳躍到它的maven。
任何想法?
@帕斯卡爾 - 是*「替代配置」*你指的是我的答案? – 2010-07-29 00:41:49
@Stephen不,我指的是OP發佈的配置,這是IMO正確的(我的意思是符合文檔)。 – 2010-07-29 00:47:40
@Stephen剛剛測試過你的建議(你的答案之一),只有最後一個'compilerArgument'獲得通過(這裏是1000)。我想你不應該傳遞幾個'compilerArgument'。 – 2010-07-29 00:51:16