Updated Branches: refs/heads/camel-2.11.x 63d840ef3 -> fc9f67b1f refs/heads/camel-2.12.x 08feae885 -> b9976009f refs/heads/master 4a3afe6e9 -> faeb31ba5
CAMEL-9649: Use rome 1.0 in camel-jcr as rome 0.9 is not a valid Maven artifact Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/b9976009 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b9976009 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b9976009 Branch: refs/heads/camel-2.12.x Commit: b9976009f78bce4391c10bdd5029b1c1f0748a7b Parents: 08feae8 Author: Claus Ibsen <davscl...@apache.org> Authored: Sat Nov 9 16:04:27 2013 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Sat Nov 9 16:04:27 2013 +0100 ---------------------------------------------------------------------- components/camel-jcr/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/b9976009/components/camel-jcr/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-jcr/pom.xml b/components/camel-jcr/pom.xml index d895ce8..236ab10 100644 --- a/components/camel-jcr/pom.xml +++ b/components/camel-jcr/pom.xml @@ -43,6 +43,19 @@ <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-core</artifactId> <version>${jackrabbit-version}</version> + <exclusions> + <!-- exclude rome 0.9 which is not a valid Maven artifact --> + <exclusion> + <groupId>rome</groupId> + <artifactId>rome</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- use rome 1.0 which is a valid Maven artifact --> + <dependency> + <groupId>rome</groupId> + <artifactId>rome</artifactId> + <version>${rome-version}</version> </dependency> <dependency> <groupId>javax.jcr</groupId>