Author: epunzalan Date: Fri Jul 7 03:17:42 2006 New Revision: 419858 URL: http://svn.apache.org/viewvc?rev=419858&view=rev Log: PR: MCLEAN-14
- Fixed typo and revised some parameter descriptions. Modified: maven/plugins/trunk/maven-clean-plugin/src/main/java/org/apache/maven/plugin/clean/CleanMojo.java maven/plugins/trunk/maven-clean-plugin/src/site/apt/usage.apt 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=419858&r1=419857&r2=419858&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 Fri Jul 7 03:17:42 2006 @@ -74,21 +74,21 @@ private File reportDirectory; /** - * Be verbose in the debug log-level? + * Sets whether the plugin runs in verbose mode. * * @parameter expression="${clean.verbose}" default=value="false" */ private boolean verbose; /** - * The list of filesets to delete, in addition to the default directories. + * The list of fileSets to delete, in addition to the default directories. * * @parameter */ private List filesets; /** - * Should we follow symbolically linked files? + * Sets whether the plugin should follow Symbolic Links to delete files. * * @parameter expression="${clean.followSymLinks}" default=value="false" */ Modified: maven/plugins/trunk/maven-clean-plugin/src/site/apt/usage.apt URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-clean-plugin/src/site/apt/usage.apt?rev=419858&r1=419857&r2=419858&view=diff ============================================================================== --- maven/plugins/trunk/maven-clean-plugin/src/site/apt/usage.apt (original) +++ maven/plugins/trunk/maven-clean-plugin/src/site/apt/usage.apt Fri Jul 7 03:17:42 2006 @@ -45,7 +45,7 @@ When for some reason, adding <<<clean>>> to the command-line is not option, the clean plugin can be put into a project's pom.xml so that it gets executed everytime the project is built. Below is a sample pom.xml for running the - clean plugin in the <<validate>>> phase everytime the project is built: + clean plugin in the <<<validate>>> phase everytime the project is built: +----- <project>