Return-Path: X-Original-To: apmail-creadur-commits-archive@www.apache.org Delivered-To: apmail-creadur-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 05D1EDBC6 for ; Sun, 4 Nov 2012 18:28:51 +0000 (UTC) Received: (qmail 35672 invoked by uid 500); 4 Nov 2012 18:28:50 -0000 Delivered-To: apmail-creadur-commits-archive@creadur.apache.org Received: (qmail 35648 invoked by uid 500); 4 Nov 2012 18:28:50 -0000 Mailing-List: contact commits-help@creadur.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@creadur.apache.org Delivered-To: mailing list commits@creadur.apache.org Received: (qmail 35640 invoked by uid 99); 4 Nov 2012 18:28:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Nov 2012 18:28:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Nov 2012 18:28:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 469DC23888CD for ; Sun, 4 Nov 2012 18:28:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1405598 - /creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java Date: Sun, 04 Nov 2012 18:28:27 -0000 To: commits@creadur.apache.org From: dennisl@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121104182827.469DC23888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dennisl Date: Sun Nov 4 18:28:26 2012 New Revision: 1405598 URL: http://svn.apache.org/viewvc?rev=1405598&view=rev Log: [RAT-116] Docs don't say what the default excludes are Modified: creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java Modified: creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java URL: http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java?rev=1405598&r1=1405597&r2=1405598&view=diff ============================================================================== --- creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java (original) +++ creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java Sun Nov 4 18:28:26 2012 @@ -132,32 +132,37 @@ public abstract class AbstractRatMojo ex /** * Whether to use the default excludes when scanning for files. - * + * The default excludes are: + * */ @Parameter(property = "rat.useDefaultExcludes", defaultValue = "true") private boolean useDefaultExcludes; /** * Whether to use the Maven specific default excludes when scanning for files. Maven specific default excludes are - * given by the constant MAVEN_DEFAULT_EXCLUDES: The target directory, the cobertura.ser file, and so on. - * + * given by the constant MAVEN_DEFAULT_EXCLUDES: The target directory, the cobertura.ser + * file, and so on. */ @Parameter(property = "rat.useMavenDefaultExcludes", defaultValue = "true") private boolean useMavenDefaultExcludes; /** * Whether to use the Eclipse specific default excludes when scanning for files. Eclipse specific default excludes - * are given by the constant ECLIPSE_DEFAULT_EXCLUDES: The .classpath and .project files, the .settings directory, - * and so on. - * + * are given by the constant ECLIPSE_DEFAULT_EXCLUDES: The .classpath and .project files, + * the .settings directory, and so on. */ @Parameter(property = "rat.useEclipseDefaultExcludes", defaultValue = "true") private boolean useEclipseDefaultExcludes; /** * Whether to use the IDEA specific default excludes when scanning for files. IDEA specific default excludes are - * given by the constant IDEA_DEFAULT_EXCLUDES: The *.iml, *.ipr and *.iws files and the .idea directory. - * + * given by the constant IDEA_DEFAULT_EXCLUDES: The *.iml, *.ipr and *.iws + * files and the .idea directory. */ @Parameter(property = "rat.useIdeaDefaultExcludes", defaultValue = "true") private boolean useIdeaDefaultExcludes;