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 8063cf7bd79 CAMEL-20099: Use newer version of httpcore in camel-http 
like we do for camel-http-starter with SB (#11985)
8063cf7bd79 is described below

commit 8063cf7bd7977963c7cc5e43d9ba728ad8d6364b
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Nov 14 10:44:36 2023 +0100

    CAMEL-20099: Use newer version of httpcore in camel-http like we do for 
camel-http-starter with SB (#11985)
---
 components/camel-http/pom.xml | 11 +++++++++++
 parent/pom.xml                |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/components/camel-http/pom.xml b/components/camel-http/pom.xml
index 88c3c2e3db9..f3d99591339 100644
--- a/components/camel-http/pom.xml
+++ b/components/camel-http/pom.xml
@@ -59,12 +59,23 @@
             <version>${jakarta-servlet-api-version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.httpcomponents.core5</groupId>
+            <artifactId>httpcore5</artifactId>
+            <version>${httpcore-version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.httpcomponents.core5</groupId>
+            <artifactId>httpcore5-h2</artifactId>
+            <version>${httpcore-version}</version>
+        </dependency>
         <dependency>
             <groupId>org.apache.httpcomponents.client5</groupId>
             <artifactId>httpclient5</artifactId>
             <version>${httpclient-version}</version>
         </dependency>
 
+
         <!-- testing -->
         <dependency>
             <groupId>org.apache.camel</groupId>
diff --git a/parent/pom.xml b/parent/pom.xml
index 193e68beff4..67113ba29aa 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -201,7 +201,7 @@
         <hk2-version>2.6.1</hk2-version>
         <hsqldb-version>2.7.2</hsqldb-version>
         <httpunit-version>1.7</httpunit-version>
-        <httpcore-version>5.2.2</httpcore-version>
+        <httpcore-version>5.2.3</httpcore-version>
         <httpclient-version>5.2.1</httpclient-version>
         <httpcore4-version>4.4.16</httpcore4-version>
         <httpclient4-version>4.5.14</httpclient4-version>

Reply via email to