Added commons collection dependency, as part of artemis distribution
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/e7d0e91d
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/e7d0e91d
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/e7d0e91d
Branch: refs/heads/master
Commit: e7d0e91ddc69a018c50c0f0564e2e242faa93c34
Parents: 686e645
Author: Paul Gallagher <pgallagh@redhat.com>
Authored: Fri Nov 27 11:38:02 2015 +0000
Committer: Paul Gallagher <pgallagh@redhat.com>
Committed: Fri Nov 27 11:38:02 2015 +0000
----------------------------------------------------------------------
pom.xml | 19 ++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/e7d0e91d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 329a8f8..5d66c66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -207,6 +207,12 @@
<!-- Eclipse Public License - v 1.0 -->
</dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections-testframework</artifactId>
+ <version>3.2.1</version>
+ <!-- License: Apache 2.0 -->
+ </dependency>
<!-- ## End Test Dependencies ## -->
<!-- ### Build Time Dependencies ### -->
@@ -292,6 +298,13 @@
<!-- License: Apache 2.0 -->
</dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ <!-- License: Apache 2.0 -->
+ </dependency>
+
<!-- Required for: JMS Injection -->
<dependency>
<groupId>javax.enterprise</groupId>
@@ -491,11 +504,11 @@
<version>1.2</version>
<!-- License: Apache 2.0 -->
</dependency>
-
+
</dependencies>
</dependencyManagement>
-
+
<dependencies>
<!-- OSGi support -->
<dependency>
@@ -510,7 +523,7 @@
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
-
+
</dependencies>
<profiles>
|