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 2023/07/19 19:10:58 UTC

[camel] branch main updated: camel-rest-openapi: Can now use jackson 2.15.x

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new ad5993318f7 camel-rest-openapi: Can now use jackson 2.15.x
ad5993318f7 is described below

commit ad5993318f77b0da68e6a85ec59632032687d786
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Jul 19 21:10:49 2023 +0200

    camel-rest-openapi: Can now use jackson 2.15.x
---
 components/camel-rest-openapi/pom.xml | 6 +++---
 parent/pom.xml                        | 3 ---
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/components/camel-rest-openapi/pom.xml b/components/camel-rest-openapi/pom.xml
index f590b962635..b5a23e829f7 100644
--- a/components/camel-rest-openapi/pom.xml
+++ b/components/camel-rest-openapi/pom.xml
@@ -63,17 +63,17 @@
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-core</artifactId>
-            <version>${jackson2.14-version}</version>
+            <version>${jackson2-version}</version>
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
-            <version>${jackson2.14-version}</version>
+            <version>${jackson2-version}</version>
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.dataformat</groupId>
             <artifactId>jackson-dataformat-yaml</artifactId>
-            <version>${jackson2.14-version}</version>
+            <version>${jackson2-version}</version>
         </dependency>
 
         <!-- test -->
diff --git a/parent/pom.xml b/parent/pom.xml
index 4497784c24f..d5f273717db 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -225,9 +225,6 @@
         <ivy-version>2.5.1</ivy-version>
         <jackson-jq-version>1.0.0-preview.20230409</jackson-jq-version>
         <jackson2-version>2.15.2</jackson2-version>
-        <!-- For projects not yet compatible with Jackson 2.15 -->
-        <jackson2.14-version>2.14.3</jackson2.14-version>
-        <jackson2-module-scala-version>2.15.1</jackson2-module-scala-version>
         <jackrabbit-version>2.21.17</jackrabbit-version>
         <jasminb-jsonapi-version>0.12</jasminb-jsonapi-version>
         <jandex-version>3.1.2</jandex-version>