mirror of https://github.com/apache/nifi.git
NIFI-11748 Upgraded Apache Commons Codec from 1.15 to 1.16.0
Signed-off-by: Matt Burgess <mattyb149@apache.org>
This commit is contained in:
parent
1cc093961f
commit
072c9547bf
|
@ -228,7 +228,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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -164,7 +164,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>
|
||||
|
|
14
pom.xml
14
pom.xml
|
@ -110,6 +110,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>
|
||||
|
@ -251,6 +252,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>
|
||||
|
@ -298,14 +304,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>
|
||||
|
|
Loading…
Reference in New Issue