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 2016/11/22 21:42:43 UTC

wicket git commit: Move commons-collections4 dependency to -util so that all modules could use it

Repository: wicket
Updated Branches:
  refs/heads/master 0b71bd97b -> 1a77c2b09


Move commons-collections4 dependency to -util so that all modules could use it


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/1a77c2b0
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/1a77c2b0
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/1a77c2b0

Branch: refs/heads/master
Commit: 1a77c2b099358a4d3568dc8a74cf7244ba020f15
Parents: 0b71bd9
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Tue Nov 22 22:42:01 2016 +0100
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Tue Nov 22 22:42:36 2016 +0100

----------------------------------------------------------------------
 wicket-core/pom.xml    | 4 ----
 wicket-request/pom.xml | 4 ----
 wicket-util/pom.xml    | 4 ++++
 3 files changed, 4 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/1a77c2b0/wicket-core/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-core/pom.xml b/wicket-core/pom.xml
index 90aca4a..6ff1abe 100644
--- a/wicket-core/pom.xml
+++ b/wicket-core/pom.xml
@@ -43,10 +43,6 @@
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
-		    <groupId>org.apache.commons</groupId>
-		    <artifactId>commons-collections4</artifactId>
-		</dependency>
-		<dependency>
 			<groupId>org.apache.wicket</groupId>
 			<artifactId>wicket-request</artifactId>
 		</dependency>

http://git-wip-us.apache.org/repos/asf/wicket/blob/1a77c2b0/wicket-request/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-request/pom.xml b/wicket-request/pom.xml
index af460ff..5d60da7 100755
--- a/wicket-request/pom.xml
+++ b/wicket-request/pom.xml
@@ -30,9 +30,5 @@
       <groupId>org.apache.wicket</groupId>
       <artifactId>wicket-util</artifactId>
     </dependency>
-    <dependency>
-      <groupId>org.apache.commons</groupId>
-      <artifactId>commons-collections4</artifactId>
-    </dependency>
   </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/wicket/blob/1a77c2b0/wicket-util/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-util/pom.xml b/wicket-util/pom.xml
index af63e96..98997d0 100755
--- a/wicket-util/pom.xml
+++ b/wicket-util/pom.xml
@@ -39,5 +39,9 @@
 			<groupId>commons-io</groupId>
 			<artifactId>commons-io</artifactId>
 		</dependency>
+		<dependency>
+			<groupId>org.apache.commons</groupId>
+			<artifactId>commons-collections4</artifactId>
+		</dependency>
 	</dependencies>
 </project>