You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Olivier Lamy (*$^¨%`£ JIRA)" <ji...@apache.org> on 2018/11/14 01:36:00 UTC

[jira] [Closed] (MCOMPILER-306) Incorrect `compilerArgs` example usage

     [ https://issues.apache.org/jira/browse/MCOMPILER-306?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Lamy (*$^¨%`£) closed MCOMPILER-306.
--------------------------------------------
    Resolution: Fixed

pr merged . Thanks for your contribution!

> Incorrect `compilerArgs` example usage
> --------------------------------------
>
>                 Key: MCOMPILER-306
>                 URL: https://issues.apache.org/jira/browse/MCOMPILER-306
>             Project: Maven Compiler Plugin
>          Issue Type: Bug
>    Affects Versions: 3.6.2
>            Reporter: Stephan Schroevers
>            Assignee: Olivier Lamy (*$^¨%`£)
>            Priority: Major
>             Fix For: 3.8.1
>
>
> The {{compilerArgs}} property documentation [contains|https://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html#compilerArgs] this example usage:
> {code:xml}
> <compilerArgs>
>   <arg>-Xmaxerrs=1000</arg>
>   <arg>-Xlint</arg>
>   <arg>-J-Duser.language=en_us</arg>
> </compilerArgs>
> {code}
> But setting {{<arg>-Xmaxerrs=1000</arg>}} causes:
> {noformat}
> 	...
> Caused by: java.lang.IllegalArgumentException: invalid flag: -Xmaxerrs=1000
> 	at com.sun.tools.javac.api.JavacTool.processOptions(JavacTool.java:206)
> 	at com.sun.tools.javac.api.JavacTool.getTask(JavacTool.java:156)
> 	at com.sun.tools.javac.api.JavacTool.getTask(JavacTool.java:107)
> 	at com.sun.tools.javac.api.JavacTool.getTask(JavacTool.java:64)
> 	at org.codehaus.plexus.compiler.javac.JavaxToolsCompiler.compileInProcess(JavaxToolsCompiler.java:125)
> 	... 16 more
> {noformat}
> This does work:
> {code:xml}
> <compilerArgs>
>   <arg>-Xmaxerrs</arg>
>   <arg>1000</arg>
> </compilerArgs>
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)