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

mattyb149 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 7d6af0dbb0 NIFI-11748 Upgraded Apache Commons Codec from 1.15 to 1.16.0
7d6af0dbb0 is described below

commit 7d6af0dbb0e22a29c32fc33efbc396d418ad0ad1
Author: exceptionfactory <exceptionfact...@apache.org>
AuthorDate: Fri Jun 23 10:26:12 2023 -0500

    NIFI-11748 Upgraded Apache Commons Codec from 1.15 to 1.16.0
    
    Signed-off-by: Matt Burgess <mattyb...@apache.org>
    
    This closes #7428
---
 .../nifi-framework/nifi-file-authorizer/pom.xml            |  2 +-
 .../nifi-web/nifi-web-content-viewer/pom.xml               |  2 +-
 .../nifi-standard-content-viewer/pom.xml                   |  2 +-
 .../nifi-standard-bundle/nifi-standard-processors/pom.xml  |  2 +-
 pom.xml                                                    | 14 ++++++--------
 5 files changed, 10 insertions(+), 12 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-file-authorizer/pom.xml
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-file-authorizer/pom.xml
index 75f7dc7b88..80ffdda245 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-file-authorizer/pom.xml
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-file-authorizer/pom.xml
@@ -135,7 +135,7 @@
         <dependency>
             <groupId>commons-codec</groupId>
             <artifactId>commons-codec</artifactId>
-            <version>1.15</version>
+            <version>${org.apache.commons.codec.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/pom.xml
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/pom.xml
index 42bb97ca3b..90fb25f2ae 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/pom.xml
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/pom.xml
@@ -57,7 +57,7 @@
         <dependency>
             <groupId>commons-codec</groupId>
             <artifactId>commons-codec</artifactId>
-            <version>1.15</version>
+            <version>${org.apache.commons.codec.version}</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-content-viewer/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-content-viewer/pom.xml
index b2fbc859f0..14df0d8d82 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-content-viewer/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-content-viewer/pom.xml
@@ -42,7 +42,7 @@
         <dependency>
             <groupId>commons-codec</groupId>
             <artifactId>commons-codec</artifactId>
-            <version>1.15</version>
+            <version>${org.apache.commons.codec.version}</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
index a2e68e49f3..c213becf24 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
@@ -160,7 +160,7 @@
         <dependency>
             <groupId>commons-codec</groupId>
             <artifactId>commons-codec</artifactId>
-            <version>1.15</version>
+            <version>${org.apache.commons.codec.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
diff --git a/pom.xml b/pom.xml
index 269ff9649b..9b9f2f68b1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -109,6 +109,7 @@
         <kotlin.version>1.8.20</kotlin.version>
         <okhttp.version>4.11.0</okhttp.version>
         <org.apache.commons.cli.version>1.5.0</org.apache.commons.cli.version>
+        
<org.apache.commons.codec.version>1.16.0</org.apache.commons.codec.version>
         
<org.apache.commons.lang3.version>3.12.0</org.apache.commons.lang3.version>
         <org.apache.commons.net.version>3.9.0</org.apache.commons.net.version>
         <org.apache.commons.io.version>2.13.0</org.apache.commons.io.version>
@@ -257,6 +258,11 @@
                 <artifactId>commons-cli</artifactId>
                 <version>${org.apache.commons.cli.version}</version>
             </dependency>
+            <dependency>
+                <groupId>commons-codec</groupId>
+                <artifactId>commons-codec</artifactId>
+                <version>${org.apache.commons.codec.version}</version>
+            </dependency>
             <dependency>
                 <groupId>commons-io</groupId>
                 <artifactId>commons-io</artifactId>
@@ -304,14 +310,6 @@
                     </exclusion>
                 </exclusions>
             </dependency>
-
-            <!-- Commons Codec -->
-            <dependency>
-                <groupId>commons-codec</groupId>
-                <artifactId>commons-codec</artifactId>
-                <version>1.15</version>
-            </dependency>
-
             <dependency>
                 <groupId>org.junit</groupId>
                 <artifactId>junit-bom</artifactId>

Reply via email to