This is an automated email from the ASF dual-hosted git repository. olamy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git
The following commit(s) were added to refs/heads/master by this push: new 00f8ee7 [MCOMPILER-306] Fix `compilerArgs` example usage (#9) 00f8ee7 is described below commit 00f8ee7c18a8311bf11d068117d6c3b936528612 Author: Stephan Schroevers <stephan...@gmail.com> AuthorDate: Wed Nov 14 02:34:42 2018 +0100 [MCOMPILER-306] Fix `compilerArgs` example usage (#9) --- .../java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java b/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java index 9295499..d898020 100644 --- a/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java +++ b/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java @@ -336,7 +336,8 @@ public abstract class AbstractCompilerMojo * Example: * <pre> * <compilerArgs> - * <arg>-Xmaxerrs=1000</arg> + * <arg>-Xmaxerrs</arg> + * <arg>1000</arg> * <arg>-Xlint</arg> * <arg>-J-Duser.language=en_us</arg> * </compilerArgs>