You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2014/03/07 15:29:54 UTC

svn commit: r1575268 - in /maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle: CheckstyleAggregateReport.java CheckstyleReport.java CheckstyleViolationCheckMojo.java

Author: dennisl
Date: Fri Mar  7 14:29:53 2014
New Revision: 1575268

URL: http://svn.apache.org/r1575268
Log:
[MCHECKSTYLE-221] ResourceIncludes default value is wrong
- I removed the manually documented default values

Modified:
    maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleAggregateReport.java
    maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReport.java
    maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojo.java

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleAggregateReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleAggregateReport.java?rev=1575268&r1=1575267&r2=1575268&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleAggregateReport.java (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleAggregateReport.java Fri Mar  7 14:29:53 2014
@@ -42,8 +42,6 @@ public class CheckstyleAggregateReport
 
     /**
      * Specifies the names filter of the source files to be used for Checkstyle.
-     *
-     * <strong>Note:</strong> default value is {@code **\/*.java}.
      */
     @Parameter( property = "checkstyle.includes", defaultValue = JAVA_FILES, required = true )
     private String includes;
@@ -57,8 +55,6 @@ public class CheckstyleAggregateReport
 
     /**
      * Specifies the names filter of the resource files to be used for Checkstyle.
-     *
-     * <strong>Note:</strong> default value is {@code **\/*.properties}.
      * @since 2.11
      */
     @Parameter( property = "checkstyle.resourceIncludes", defaultValue = "**/*.properties", required = true )

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReport.java?rev=1575268&r1=1575267&r2=1575268&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReport.java (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReport.java Fri Mar  7 14:29:53 2014
@@ -64,8 +64,6 @@ public class CheckstyleReport
 
     /**
      * Specifies the names filter of the source files to be used for Checkstyle.
-     *
-     * <strong>Note:</strong> default value is {@code **\/*.java}.
      */
     @Parameter( property = "checkstyle.includes", defaultValue = JAVA_FILES, required = true )
     private String includes;
@@ -80,8 +78,6 @@ public class CheckstyleReport
     /**
      * Specifies the names filter of the source files to be used for Checkstyle.
      * @since 2.11
-     *
-     * <strong>Note:</strong> default value is {@code **\/*.properties}.
      */
     @Parameter( property = "checkstyle.resourceIncludes", defaultValue = "**/*.properties", required = true )
     private String resourceIncludes;

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojo.java?rev=1575268&r1=1575267&r2=1575268&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojo.java (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojo.java Fri Mar  7 14:29:53 2014
@@ -316,8 +316,6 @@ public class CheckstyleViolationCheckMoj
 
     /**
      * Specifies the names filter of the source files to be used for Checkstyle.
-     *
-     * <strong>Note:</strong> default value is {@code **\/*.java}.
      */
     @Parameter( property = "checkstyle.includes", defaultValue = JAVA_FILES, required = true )
     private String includes;
@@ -332,8 +330,6 @@ public class CheckstyleViolationCheckMoj
 
     /**
      * Specifies the names filter of the files to be used for Checkstyle when checking resources.
-     *
-     * <strong>Note:</strong> default value is {@code **\/*.properties}.
      * @since 2.11
      */
     @Parameter( property = "checkstyle.resourceIncludes", defaultValue = "**/*.properties", required = true )