You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/09/14 14:51:42 UTC

[commons-vfs] branch master updated: [VFS-777] NoSuchMethodError due to multiple versions of commons-codec:commons-codec:jar.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new adfcf0a  [VFS-777] NoSuchMethodError due to multiple versions of commons-codec:commons-codec:jar.
adfcf0a is described below

commit adfcf0a1488b1154775ec6eaf1e7157a9c78a654
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Sep 14 10:51:33 2020 -0400

    [VFS-777] NoSuchMethodError due to multiple versions of
    commons-codec:commons-codec:jar.
---
 pom.xml                 | 5 +++++
 src/changes/changes.xml | 3 +++
 2 files changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index 4424f16..0967a11 100644
--- a/pom.xml
+++ b/pom.xml
@@ -473,6 +473,11 @@
         <version>1.2</version>
       </dependency>
       <dependency>
+        <groupId>commons-codec</groupId>
+        <artifactId>commons-codec</artifactId>
+        <version>1.15</version>
+      </dependency>
+      <dependency>
         <groupId>commons-net</groupId>
         <artifactId>commons-net</artifactId>
         <version>3.6</version>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index d417931..624e4fc 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -98,6 +98,9 @@ The <action> type attribute can be add,update,fix,remove.
       <action issue="VFS-664" dev="ggregory" due-to="PeterAlfredLee" type="fix">
         Fix for file names with exclamation mark can not be read #95.
       </action>
+      <action issue="VFS-777" dev="ggregory" due-to="Bing-ok, Gary Gregory" type="fix">
+        NoSuchMethodError due to multiple versions of commons-codec:commons-codec:jar.
+      </action>
       <!-- UPDATES -->
       <action issue="VFS-755" dev="ggregory" due-to="Gary Gregory" type="update">
         Update org.apache.httpcomponents:httpclient from 4.5.10 to 4.5.11.