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:56 UTC

[camel] 01/01: CAMEL-19062: openapi-rest-dsl-generator - Add jackson databind

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>