You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/08/27 16:14:42 UTC

[camel-spring-boot-examples] branch master updated (0eb658f -> 7d21d50)

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

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


    from 0eb658f  CAMEL-15428: camel-spring-boot BOM with just the starter JARs
     new a3f4a83  Camel-example-spring-boot-rest-swagger: set Jackson in dependencyManagement section
     new 7d21d50  Camel-example-spring-boot-rest-swagger: set Jackson in dependencyManagement section

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 camel-example-spring-boot-rest-swagger/pom.xml | 60 ++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)


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

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 7d21d50a9b759c0c7e8491ac8e4edcc7e56284c1
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 27 18:14:16 2020 +0200

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

diff --git a/camel-example-spring-boot-rest-swagger/pom.xml b/camel-example-spring-boot-rest-swagger/pom.xml
index 03f050a..a322d3e 100644
--- a/camel-example-spring-boot-rest-swagger/pom.xml
+++ b/camel-example-spring-boot-rest-swagger/pom.xml
@@ -71,6 +71,46 @@
                 <artifactId>jackson-datatype-jsr310</artifactId>
                 <version>2.9.10</version>
             </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.module</groupId>
+                <artifactId>jackson-module-parameter-names</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.core</groupId>
+                <artifactId>jackson-annotations</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.datatype</groupId>
+                <artifactId>jackson-datatype-joda</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.dataformat</groupId>
+                <artifactId>jackson-dataformat-yaml</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.dataformat</groupId>
+                <artifactId>jackson-dataformat-xml</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.module</groupId>
+                <artifactId>jackson-module-jaxb-annotations</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.jaxrs</groupId>
+                <artifactId>jackson-jaxrs-json-provider</artifactId>
+                <version>2.9.10</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.jaxrs</groupId>
+                <artifactId>jackson-jaxrs-base</artifactId>
+                <version>2.9.10</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 


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

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino 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>