You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/03/20 17:23:55 UTC

[camel] branch CAMEL-19062/fix-pom updated (5b794fe2c96 -> e371fe25e8f)

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

nfilotto pushed a change to branch CAMEL-19062/fix-pom
in repository https://gitbox.apache.org/repos/asf/camel.git


 discard 5b794fe2c96 CAMEL-19062: openapi-rest-dsl-generator - Add jackson core
     new e371fe25e8f CAMEL-19062: openapi-rest-dsl-generator - Add jackson databind

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5b794fe2c96)
            \
             N -- N -- N   refs/heads/CAMEL-19062/fix-pom (e371fe25e8f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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] 01/01: CAMEL-19062: openapi-rest-dsl-generator - Add jackson databind

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

nfilotto pushed a commit to branch CAMEL-19062/fix-pom
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e371fe25e8f88ab4ea805acfe170b8ba0d3db6b1
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Mon Mar 20 18:19:48 2023 +0100

    CAMEL-19062: openapi-rest-dsl-generator - Add jackson databind
---
 tooling/openapi-rest-dsl-generator/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/tooling/openapi-rest-dsl-generator/pom.xml b/tooling/openapi-rest-dsl-generator/pom.xml
index 953ea0f271d..e1b5e4b2a10 100644
--- a/tooling/openapi-rest-dsl-generator/pom.xml
+++ b/tooling/openapi-rest-dsl-generator/pom.xml
@@ -52,6 +52,12 @@
             <groupId>io.apicurio</groupId>
             <artifactId>apicurio-data-models</artifactId>
             <version>${apicurio-version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>jackson-core</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
@@ -59,6 +65,11 @@
             <version>${commons-lang3-version}</version>
         </dependency>
         <!-- yaml dsl (via xml) -->
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-databind</artifactId>
+            <version>${jackson2-version}</version>
+        </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.dataformat</groupId>
             <artifactId>jackson-dataformat-xml</artifactId>