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/05/25 12:27:18 UTC

[camel] branch camel-3.20.x updated: CAMEL-19388: OSGI - Allow to use CXF 3.6+ (#10209)

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

nfilotto pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.20.x by this push:
     new 5a107bd9646 CAMEL-19388: OSGI - Allow to use CXF 3.6+ (#10209)
5a107bd9646 is described below

commit 5a107bd9646345d51ecedcf0aea62803d4e9fedb
Author: Nicolas Filotto <es...@users.noreply.github.com>
AuthorDate: Thu May 25 14:27:10 2023 +0200

    CAMEL-19388: OSGI - Allow to use CXF 3.6+ (#10209)
    
    ## Motivation
    
    Since Apache Camel 3.20 is an LTS version and CXF 3.5 should not be maintained anymore soon as 3.6 and 4.0 have been released, the goal of this task is to extend the version range of CXF to allow OSGI users to choose a higher version of CXF 3 that will remain backward compatible with CXF 3.5.
    
    ## Modifications:
    
    * Extends the range of versions of CXF to `[3.5,4.0)`
    * Upgrades CXF to the latest maintenance version of 3.5
---
 camel-dependencies/pom.xml | 6 +++---
 parent/pom.xml             | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 1b79328554e..faa566fb900 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -150,9 +150,9 @@
     <corda-version>4.9.3</corda-version>
     <couchbase-client-version>3.4.1</couchbase-client-version>
     <curator-version>4.3.0</curator-version>
-    <cxf-codegen-plugin-version>3.5.5</cxf-codegen-plugin-version>
-    <cxf-version>3.5.5</cxf-version>
-    <cxf-version-range>[3.5,3.6)</cxf-version-range>
+    <cxf-codegen-plugin-version>3.5.6</cxf-codegen-plugin-version>
+    <cxf-version>3.5.6</cxf-version>
+    <cxf-version-range>[3.5,4.0)</cxf-version-range>
     <cxf-xjc-plugin-version>3.3.2</cxf-xjc-plugin-version>
     <cxf-xjc-utils-version>3.3.2</cxf-xjc-utils-version>
     <cxf.codegen.jvmArgs></cxf.codegen.jvmArgs>
diff --git a/parent/pom.xml b/parent/pom.xml
index 2bc2ed8d07a..93619272822 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -133,9 +133,9 @@
         <corda-version>4.9.3</corda-version>
         <couchbase-client-version>3.4.1</couchbase-client-version>
         <curator-version>4.3.0</curator-version>
-        <cxf-version>3.5.5</cxf-version>
-        <cxf-version-range>[3.5,3.6)</cxf-version-range>
-        <cxf-codegen-plugin-version>3.5.5</cxf-codegen-plugin-version>
+        <cxf-version>3.5.6</cxf-version>
+        <cxf-version-range>[3.5,4.0)</cxf-version-range>
+        <cxf-codegen-plugin-version>3.5.6</cxf-codegen-plugin-version>
         <!-- cxf-xjc is not released as often -->
         <cxf-xjc-plugin-version>3.3.2</cxf-xjc-plugin-version>
         <cxf-xjc-utils-version>3.3.2</cxf-xjc-utils-version>