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-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new 250a30b08cd camel-http-starter - Ensure we use correct version of HTTP
client JARs
250a30b08cd is described below
commit 250a30b08cdfd180794e301dba7ba91c3dd34cd5
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Mar 24 11:05:38 2023 +0100
camel-http-starter - Ensure we use correct version of HTTP client JARs
---
components-starter/camel-http-starter/pom.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/components-starter/camel-http-starter/pom.xml
b/components-starter/camel-http-starter/pom.xml
index 891bb7fb7de..9669c6e56ec 100644
--- a/components-starter/camel-http-starter/pom.xml
+++ b/components-starter/camel-http-starter/pom.xml
@@ -39,6 +39,21 @@
<artifactId>camel-http</artifactId>
<version>${camel-version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents.client5</groupId>
+ <artifactId>httpclient5</artifactId>
+ <version>${httpclient-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>
<!--START OF GENERATED CODE-->
<dependency>
<groupId>org.apache.camel.springboot</groupId>