Repository: incubator-blur Updated Branches: refs/heads/master a09a8e2fc -> 04261d3cb
BLUR-355 fixed transitive collections dependency in pom Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/00c9bf95 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/00c9bf95 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/00c9bf95 Branch: refs/heads/master Commit: 00c9bf95f50235fb51de55754c5119c31b96dbfa Parents: a09a8e2 Author: Andrew Avenoso <[email protected]> Authored: Mon Aug 11 22:51:32 2014 -0400 Committer: Andrew Avenoso <[email protected]> Committed: Mon Aug 11 22:51:32 2014 -0400 ---------------------------------------------------------------------- blur-console/pom.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/00c9bf95/blur-console/pom.xml ---------------------------------------------------------------------- diff --git a/blur-console/pom.xml b/blur-console/pom.xml index 0b8ec58..5098742 100644 --- a/blur-console/pom.xml +++ b/blur-console/pom.xml @@ -61,10 +61,15 @@ <version>1.8.8</version> </dependency> <dependency> - <groupId>jdom</groupId> + <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> <version>1.1</version> </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-collections4</artifactId> + <version>4.0</version> + </dependency> <!-- Test Dependancies --> <dependency>
