You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/05/10 00:01:17 UTC

svn commit: r1336423 - /maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java

Author: olamy
Date: Wed May  9 22:01:15 2012
New Revision: 1336423

URL: http://svn.apache.org/viewvc?rev=1336423&view=rev
Log:
more javadoc

Modified:
    maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java

Modified: maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java?rev=1336423&r1=1336422&r2=1336423&view=diff
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java (original)
+++ maven/plugins/trunk/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java Wed May  9 22:01:15 2012
@@ -313,7 +313,14 @@ public abstract class AbstractCompilerMo
     private MavenSession session;
 
     /**
-     * Strategy to re use javacc class created. Possible values: reuseCreated, reuseSame or alwaysNew
+     * Strategy to re use javacc class created.
+     * <ul>
+     *   <li>reuseCreated (default): will reuse already created but in case of multi thread builds, each thread will have
+     *   his own instance</li>
+     *   <li>reuseSame: the same Javacc class will be use for each compilation even for multi threaded build</li>
+     *   <li>alwaysNew: a new Javacc class will be created for each compilation</li>
+     * </ul>
+     * Note this parameter value depends on the os/jdk you are using but the default value must work on most of env.
      *
      * @parameter default-value="${reuseCreated}" expression="${maven.compiler.compilerReuseStrategy}"
      * @since 2.5