Author: vsiveton
Date: Tue Nov 13 06:29:34 2007
New Revision: 594550

URL: http://svn.apache.org/viewvc?rev=594550&view=rev
Log:
o added since tag

Modified:
    
maven/plugins/trunk/maven-clean-plugin/src/main/java/org/apache/maven/plugin/clean/CleanMojo.java

Modified: 
maven/plugins/trunk/maven-clean-plugin/src/main/java/org/apache/maven/plugin/clean/CleanMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-clean-plugin/src/main/java/org/apache/maven/plugin/clean/CleanMojo.java?rev=594550&r1=594549&r2=594550&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-clean-plugin/src/main/java/org/apache/maven/plugin/clean/CleanMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-clean-plugin/src/main/java/org/apache/maven/plugin/clean/CleanMojo.java
 Tue Nov 13 06:29:34 2007
@@ -46,8 +46,8 @@
  * @author <a href="mailto:[EMAIL PROTECTED]">Emmanuel Venisse</a>
  * @version $Id$
  * @goal clean
- *
- * @see org.apache.maven.plugin.clean.Fileset.
+ * @since 2.0
+ * @see org.apache.maven.plugin.clean.Fileset
  */
 public class CleanMojo
     extends AbstractMojo
@@ -85,6 +85,7 @@
      * @parameter expression="${project.reporting.outputDirectory}"
      * @required
      * @readonly
+     * @since 2.1.1
      */
     private File reportDirectory;
 
@@ -92,6 +93,7 @@
      * Sets whether the plugin runs in verbose mode.
      *
      * @parameter expression="${clean.verbose}" default-value="false"
+     * @since 2.1
      */
     private boolean verbose;
 
@@ -99,6 +101,7 @@
      * The list of fileSets to delete, in addition to the default directories.
      *
      * @parameter
+     * @since 2.1
      */
     private List filesets;
 
@@ -106,23 +109,25 @@
      * Sets whether the plugin should follow Symbolic Links to delete files.
      *
      * @parameter expression="${clean.followSymLinks}" default-value="false"
+     * @since 2.1
      */
     private boolean followSymLinks;
 
     /**
      * Finds and retrieves included and excluded files, and handles their
      * deletion
+     *
+     * @since 2.1
      */
     private FileSetManager fileSetManager;
 
-
     /**
      * Deletes file-sets in the following project build directory order:
      * (source) directory, output directory, test directory, report directory,
      * and then the additional file-sets.
      *
      * @see org.apache.maven.plugin.Mojo#execute()
-     * @throws MojoExecutionException When
+     * @throws MojoExecutionException When a directory failed to get deleted.
      */
     public void execute()
         throws MojoExecutionException


Reply via email to