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

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

commit a913d8559f338ae354c6f883267843adb71d2fa0
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Nov 14 09:43:50 2023 +0100

    CAMEL-20099: Use newer version of httpcore in camel-http like we do for 
camel-http-starter with SB
---
 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 2770936f5ea..c71eac4e6b8 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