Fix dependency convergence error Version conflict around commons-logging 1.1 and 1.2
Project: http://git-wip-us.apache.org/repos/asf/brooklyn-library/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-library/commit/45e173a1 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-library/tree/45e173a1 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-library/diff/45e173a1 Branch: refs/heads/0.7.0-incubating Commit: 45e173a1fad00e74d40fe3b4a18767f7bd4f1436 Parents: 060a5ad Author: Richard Downer <[email protected]> Authored: Tue Jun 23 13:09:47 2015 +0100 Committer: Richard Downer <[email protected]> Committed: Tue Jun 23 13:09:47 2015 +0100 ---------------------------------------------------------------------- usage/camp/pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-library/blob/45e173a1/usage/camp/pom.xml ---------------------------------------------------------------------- diff --git a/usage/camp/pom.xml b/usage/camp/pom.xml index 2ac11e6..7df716e 100644 --- a/usage/camp/pom.xml +++ b/usage/camp/pom.xml @@ -59,7 +59,13 @@ <groupId>org.apache.brooklyn.camp</groupId> <artifactId>camp-base</artifactId> <version>${project.version}</version> - </dependency> + <exclusions> + <!-- Dependency versions mismatch between transitive dependencies, declare explicitly --> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId>
