You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2005/06/07 03:21:53 UTC

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

Author: brett
Date: Mon Jun  6 18:21:52 2005
New Revision: 188650

URL: http://svn.apache.org/viewcvs?rev=188650&view=rev
Log:
use defaults

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

Modified: maven/components/trunk/maven-plugins/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java?rev=188650&r1=188649&r2=188650&view=diff
==============================================================================
--- maven/components/trunk/maven-plugins/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java (original)
+++ maven/components/trunk/maven-plugins/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java Mon Jun  6 18:21:52 2005
@@ -42,9 +42,9 @@
      * Whether to include debugging information in the compiled class files.
      * The default value is true.
      * 
-     * @parameter expression="${maven.compiler.debug}"
+     * @parameter expression="${maven.compiler.debug}" default-value="true"
      */
-    private boolean debug = true;
+    private boolean debug;
     
     /**
      * The -source argument for the Java compiler
@@ -64,9 +64,9 @@
      * The granularity in milliseconds of the last modification
      * date for testing whether a source needs recompilation
      * 
-     * @parameter alias="${lastModGranularityMs}"
+     * @parameter expression="${lastModGranularityMs}" default-value="0"
      */
-    private int staleMillis = 0;
+    private int staleMillis;
     
     protected abstract List getClasspathElements();
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org