Return-Path: Delivered-To: apmail-maven-commits-archive@www.apache.org Received: (qmail 84421 invoked from network); 7 Jul 2006 10:18:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Jul 2006 10:18:05 -0000 Received: (qmail 3186 invoked by uid 500); 7 Jul 2006 10:18:04 -0000 Delivered-To: apmail-maven-commits-archive@maven.apache.org Received: (qmail 3146 invoked by uid 500); 7 Jul 2006 10:18:04 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 3131 invoked by uid 99); 7 Jul 2006 10:18:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jul 2006 03:18:03 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jul 2006 03:18:03 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 501891A981A; Fri, 7 Jul 2006 03:17:43 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r419858 - in /maven/plugins/trunk/maven-clean-plugin/src: main/java/org/apache/maven/plugin/clean/CleanMojo.java site/apt/usage.apt Date: Fri, 07 Jul 2006 10:17:42 -0000 To: commits@maven.apache.org From: epunzalan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060707101743.501891A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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 <<>> 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 <>> phase everytime the project is built: + clean plugin in the <<>> phase everytime the project is built: +-----