You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2014/10/22 13:54:54 UTC

git commit: CAMEL-7943 added explicit dependency for jackson-core

Repository: camel
Updated Branches:
  refs/heads/master 1e28b6fea -> 128da0928


CAMEL-7943 added explicit dependency for jackson-core


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/128da092
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/128da092
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/128da092

Branch: refs/heads/master
Commit: 128da0928f2e41b4760753d228c21dc6b101aa9b
Parents: 1e28b6f
Author: Kevin Earls <ke...@kevinearls.com>
Authored: Wed Oct 22 13:35:27 2014 +0200
Committer: Kevin Earls <ke...@kevinearls.com>
Committed: Wed Oct 22 13:35:27 2014 +0200

----------------------------------------------------------------------
 components/camel-dropbox/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/128da092/components/camel-dropbox/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-dropbox/pom.xml b/components/camel-dropbox/pom.xml
index 8d8702a..bcf8dda 100755
--- a/components/camel-dropbox/pom.xml
+++ b/components/camel-dropbox/pom.xml
@@ -45,6 +45,18 @@
         <dependency>
             <groupId>com.dropbox.core</groupId>
             <artifactId>dropbox-core-sdk</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>jackson-core</artifactId>
+                 </exclusion>
+            </exclusions>
+        </dependency>
+
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-core</artifactId>
+            <version>${jackson2-version}</version>
         </dependency>
 
         <!-- apache commons-io -->