You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/09/18 15:53:51 UTC

[camel-spring-boot-examples] 28/40: Camel-example-spring-boot-rest-swagger: set Jackson in dependencyManagement section

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git

commit a3f4a83ebd00d8fbf7f9c5c85928a62eb4b14906
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 27 17:58:04 2020 +0200

    Camel-example-spring-boot-rest-swagger: set Jackson in dependencyManagement section
---
 camel-example-spring-boot-rest-swagger/pom.xml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/camel-example-spring-boot-rest-swagger/pom.xml b/camel-example-spring-boot-rest-swagger/pom.xml
index ff62f51..03f050a 100644
--- a/camel-example-spring-boot-rest-swagger/pom.xml
+++ b/camel-example-spring-boot-rest-swagger/pom.xml
@@ -51,6 +51,26 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.core</groupId>
+                <artifactId>jackson-databind</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.core</groupId>
+                <artifactId>jackson-core</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.datatype</groupId>
+                <artifactId>jackson-datatype-jdk8</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.datatype</groupId>
+                <artifactId>jackson-datatype-jsr310</artifactId>
+                <version>2.9.10</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>