You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by th...@apache.org on 2020/03/30 15:24:36 UTC

[nifi-registry] branch NIFIREG-364 created (now da558f9)

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

thenatog pushed a change to branch NIFIREG-364
in repository https://gitbox.apache.org/repos/asf/nifi-registry.git.


      at da558f9  NIFIREG-364 - Upgraded again to checkstyle 8.31.

This branch includes the following new commits:

     new e60b70f  NIFIREG-364 - Upgrading maven checkstyle version. Errors need fixing.
     new da558f9  NIFIREG-364 - Upgraded again to checkstyle 8.31.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[nifi-registry] 01/02: NIFIREG-364 - Upgrading maven checkstyle version. Errors need fixing.

Posted by th...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

thenatog pushed a commit to branch NIFIREG-364
in repository https://gitbox.apache.org/repos/asf/nifi-registry.git

commit e60b70f9888117f0da08983103cd44248bed9fed
Author: Nathan Gough <th...@gmail.com>
AuthorDate: Mon Mar 23 15:18:40 2020 -0400

    NIFIREG-364 - Upgrading maven checkstyle version. Errors need fixing.
---
 checkstyle.xml | 18 +++++++-----------
 pom.xml        |  5 ++---
 2 files changed, 9 insertions(+), 14 deletions(-)

diff --git a/checkstyle.xml b/checkstyle.xml
index 80af4b7..f6ce00c 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -9,6 +9,12 @@
     <module name="FileTabCharacter">
         <property name="eachLine" value="true" />
     </module>
+    <module name="LineLength">
+       <!-- needs extra, because Eclipse formatter ignores the ending left
+            brace -->
+       <property name="max" value="200" />
+       <property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://" />
+    </module>
     <module name="TreeWalker">
         <module name="RegexpSinglelineJava">
             <property name="format" value="\s+$" />
@@ -19,12 +25,6 @@
             <property name="message" value="Javadoc @see does not need @link: pick one or the other." />
         </module>
         <module name="OuterTypeFilename" />
-        <module name="LineLength">
-            <!-- needs extra, because Eclipse formatter ignores the ending left
-            brace -->
-            <property name="max" value="200" />
-            <property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://" />
-        </module>
         <module name="AvoidStarImport" />
         <module name="UnusedImports">
             <property name="processJavadoc" value="true" />
@@ -64,14 +64,10 @@
         </module>
         <module name="NonEmptyAtclauseDescription" />
         <module name="JavadocMethod">
-            <property name="allowUndeclaredRTE" value="true" />
-            <property name="allowMissingJavadoc" value="true" />
             <property name="allowMissingParamTags" value="true" />
-            <property name="allowMissingThrowsTags" value="true" />
             <property name="allowMissingReturnTag" value="true" />
             <property name="allowedAnnotations" value="Override,Test,BeforeClass,AfterClass,Before,After" />
-            <property name="allowThrowsTagsForSubclasses" value="true" />
         </module>
         <module name="SingleLineJavadoc" />
     </module>
-</module>
\ No newline at end of file
+</module>
diff --git a/pom.xml b/pom.xml
index 82d2384..3091a39 100644
--- a/pom.xml
+++ b/pom.xml
@@ -478,12 +478,12 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-checkstyle-plugin</artifactId>
-                    <version>3.0.0</version>
+                    <version>3.1.1</version>
                     <dependencies>
                         <dependency>
                             <groupId>com.puppycrawl.tools</groupId>
                             <artifactId>checkstyle</artifactId>
-                            <version>8.21</version>
+                            <version>8.29</version>
                         </dependency>
                     </dependencies>
                 </plugin>
@@ -716,5 +716,4 @@
             </properties>
         </profile>
     </profiles>
-
 </project>


[nifi-registry] 02/02: NIFIREG-364 - Upgraded again to checkstyle 8.31.

Posted by th...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

thenatog pushed a commit to branch NIFIREG-364
in repository https://gitbox.apache.org/repos/asf/nifi-registry.git

commit da558f91dbb4d5174f977423c2a7c1049b7c5027
Author: Nathan Gough <th...@gmail.com>
AuthorDate: Mon Mar 30 11:21:19 2020 -0400

    NIFIREG-364 - Upgraded again to checkstyle 8.31.
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 3091a39..ad06fe7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -483,7 +483,7 @@
                         <dependency>
                             <groupId>com.puppycrawl.tools</groupId>
                             <artifactId>checkstyle</artifactId>
-                            <version>8.29</version>
+                            <version>8.31</version>
                         </dependency>
                     </dependencies>
                 </plugin>