You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2019/04/24 17:27:05 UTC

[wicket] branch master updated: WICKET-6659 commons-io:commons-io is used in multiple versions at same time

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

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new cabcc16  WICKET-6659 commons-io:commons-io is used in multiple versions at same time
cabcc16 is described below

commit cabcc164f3c795b63587191e93474931cf2f9da2
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Wed Apr 24 19:26:10 2019 +0200

    WICKET-6659 commons-io:commons-io is used in multiple versions at same time
    
    Exclude commons-io dependency of commons-fileupload
    Update commons-collections4 to 4.3
---
 pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 3b38c4b..0f69641 100644
--- a/pom.xml
+++ b/pom.xml
@@ -134,7 +134,7 @@
 		<!-- Project Versions -->
 		<cglib.version>3.2.10</cglib.version>
 		<commons-collections.version>3.2.2</commons-collections.version>
-		<commons-collections4.version>4.2</commons-collections4.version>
+		<commons-collections4.version>4.3</commons-collections4.version>
 		<commons-fileupload.version>1.4</commons-fileupload.version>
 		<commons-io.version>2.6</commons-io.version>
 		<commons-lang3.version>3.8.1</commons-lang3.version>
@@ -240,6 +240,12 @@
 				<groupId>commons-fileupload</groupId>
 				<artifactId>commons-fileupload</artifactId>
 				<version>${commons-fileupload.version}</version>
+				<exclusions>
+					<exclusion>
+						<groupId>commons-io</groupId>
+						<artifactId>commons-io</artifactId>
+					</exclusion>
+				</exclusions>
 			</dependency>
 			<dependency>
 				<groupId>commons-io</groupId>