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

[nifi-registry] branch master updated (ec711c7 -> 6e33103)

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

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


    from ec711c7  [NIFIREG-374] reload nifi registry config upon successful login
     new a84753a  NIFIREG-364 - Upgrading maven checkstyle version. Errors need fixing.
     new 203b323  NIFIREG-364 - Upgraded again to checkstyle 8.31.
     new 6e33103  NIFIREG-376 - Upgrading jackson-databind to 2.9.10.3.

The 3 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.


Summary of changes:
 checkstyle.xml | 18 +++++++-----------
 pom.xml        |  7 +++----
 2 files changed, 10 insertions(+), 15 deletions(-)


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

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

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

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

    NIFIREG-364 - Upgrading maven checkstyle version. Errors need fixing.
    
    Signed-off-by: Arpad Boda <ab...@apache.org>
---
 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] 03/03: NIFIREG-376 - Upgrading jackson-databind to 2.9.10.3.

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

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

commit 6e33103f8f2ae2b65c617b5523d4c5ef827912aa
Author: Nathan Gough <th...@gmail.com>
AuthorDate: Mon Mar 30 17:18:54 2020 -0400

    NIFIREG-376 - Upgrading jackson-databind to 2.9.10.3.
    
    Signed-off-by: Arpad Boda <ab...@apache.org>
    
    This closes #271
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index ad06fe7..b0101eb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -96,7 +96,7 @@
         <jax.rs.api.version>2.1</jax.rs.api.version>
         <jersey.version>2.27</jersey.version>
         <jackson.version>2.9.9</jackson.version>
-        <jackson.databind.version>2.9.10.2</jackson.databind.version>
+        <jackson.databind.version>2.9.10.3</jackson.databind.version>
         <spring.boot.version>2.1.12.RELEASE</spring.boot.version>
         <spring.security.version>5.1.8.RELEASE</spring.security.version>
         <flyway.version>5.2.4</flyway.version>


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

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

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

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

    NIFIREG-364 - Upgraded again to checkstyle 8.31.
    
    Signed-off-by: Arpad Boda <ab...@apache.org>
    
    This closes #270
---
 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>