You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by ac...@apache.org on 2019/04/23 21:13:52 UTC

[incubator-tamaya-extensions] 01/01: TAMAYA-387: Update checkstyle version

This is an automated email from the ASF dual-hosted git repository.

acoburn pushed a commit to branch TAMAYA-387
in repository https://gitbox.apache.org/repos/asf/incubator-tamaya-extensions.git

commit ec01dbb8ffba29094a67647966b3af28fba69f1b
Author: Aaron Coburn <ac...@apache.org>
AuthorDate: Tue Apr 23 17:12:23 2019 -0400

    TAMAYA-387: Update checkstyle version
    
    This updates the checkstyle (puppycrawl) version to the 8.x series,
    adjusting the maven and style.xml files as appropriate.
---
 buildtools/src/main/resources/checkstyle/style.xml | 4 +---
 pom.xml                                            | 8 +-------
 2 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/buildtools/src/main/resources/checkstyle/style.xml b/buildtools/src/main/resources/checkstyle/style.xml
index 4e51ef8..0be1d52 100644
--- a/buildtools/src/main/resources/checkstyle/style.xml
+++ b/buildtools/src/main/resources/checkstyle/style.xml
@@ -20,7 +20,6 @@ under the License.
     "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
     "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
 <module name="Checker">
-    <module name="SuppressionCommentFilter"/>
 
     <!-- Checks for Size Violations.                    -->
     <!-- See http://checkstyle.sf.net/config_sizes.html -->
@@ -35,8 +34,7 @@ under the License.
 
 
     <module name="TreeWalker">
-        <!-- needed for the SuppressionCommentFilter -->
-        <module name="FileContentsHolder"/>
+        <module name="SuppressionCommentFilter"/>
 
         <!-- Checks for Javadoc comments.                     -->
         <!-- See http://checkstyle.sf.net/config_javadoc.html -->
diff --git a/pom.xml b/pom.xml
index f1acce0..72f4032 100644
--- a/pom.xml
+++ b/pom.xml
@@ -421,13 +421,7 @@ under the License.
                         <dependency>
                             <groupId>com.puppycrawl.tools</groupId>
                             <artifactId>checkstyle</artifactId>
-                            <version>7.8</version>
-                            <exclusions><!-- MCHECKSTYLE-156 -->
-                                <exclusion>
-                                    <groupId>com.sun</groupId>
-                                    <artifactId>tools</artifactId>
-                                </exclusion>
-                            </exclusions>
+                            <version>8.19</version>
                         </dependency>
                     </dependencies>
                 </plugin>