You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/02/23 13:50:22 UTC

[camel] 02/02: CAMEL-19062 - Clean up Parent POM - HTTP Client

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

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

commit 00ac2023d9f257452dd6b052cf445913e2d5f65c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Feb 23 14:49:57 2023 +0100

    CAMEL-19062 - Clean up Parent POM - HTTP Client
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 components/camel-as2/camel-as2-api/pom.xml         | 1 +
 components/camel-cm-sms/pom.xml                    | 1 +
 components/camel-couchdb/pom.xml                   | 1 +
 components/camel-cxf/camel-cxf-rest/pom.xml        | 2 ++
 components/camel-cxf/camel-cxf-soap/pom.xml        | 1 +
 components/camel-cxf/camel-cxf-spring-rest/pom.xml | 2 ++
 components/camel-cxf/camel-cxf-spring-soap/pom.xml | 1 +
 components/camel-geocoder/pom.xml                  | 1 +
 components/camel-graphql/pom.xml                   | 1 +
 components/camel-http/pom.xml                      | 1 +
 components/camel-jetty/pom.xml                     | 2 ++
 components/camel-oaipmh/pom.xml                    | 1 +
 components/camel-solr/pom.xml                      | 2 ++
 components/camel-spring-ws/pom.xml                 | 1 +
 components/camel-undertow/pom.xml                  | 1 +
 components/camel-weather/pom.xml                   | 1 +
 components/camel-wordpress/pom.xml                 | 1 +
 components/camel-workday/pom.xml                   | 2 ++
 18 files changed, 23 insertions(+)

diff --git a/components/camel-as2/camel-as2-api/pom.xml b/components/camel-as2/camel-as2-api/pom.xml
index 8129242dc4f..338895e7a64 100644
--- a/components/camel-as2/camel-as2-api/pom.xml
+++ b/components/camel-as2/camel-as2-api/pom.xml
@@ -72,6 +72,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpmime</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
 
         <dependency>
diff --git a/components/camel-cm-sms/pom.xml b/components/camel-cm-sms/pom.xml
index 180b872c827..9c73d41f053 100644
--- a/components/camel-cm-sms/pom.xml
+++ b/components/camel-cm-sms/pom.xml
@@ -48,6 +48,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
 
         <dependency>
diff --git a/components/camel-couchdb/pom.xml b/components/camel-couchdb/pom.xml
index 30145755ecc..48504dfdd04 100644
--- a/components/camel-couchdb/pom.xml
+++ b/components/camel-couchdb/pom.xml
@@ -53,6 +53,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
diff --git a/components/camel-cxf/camel-cxf-rest/pom.xml b/components/camel-cxf/camel-cxf-rest/pom.xml
index c48b622fd68..1fed60bd96b 100644
--- a/components/camel-cxf/camel-cxf-rest/pom.xml
+++ b/components/camel-cxf/camel-cxf-rest/pom.xml
@@ -165,12 +165,14 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpmime</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/components/camel-cxf/camel-cxf-soap/pom.xml b/components/camel-cxf/camel-cxf-soap/pom.xml
index 7a626786d3c..ed51dc24c56 100644
--- a/components/camel-cxf/camel-cxf-soap/pom.xml
+++ b/components/camel-cxf/camel-cxf-soap/pom.xml
@@ -182,6 +182,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/components/camel-cxf/camel-cxf-spring-rest/pom.xml b/components/camel-cxf/camel-cxf-spring-rest/pom.xml
index 344c5c56cfc..3da6b61ddce 100644
--- a/components/camel-cxf/camel-cxf-spring-rest/pom.xml
+++ b/components/camel-cxf/camel-cxf-spring-rest/pom.xml
@@ -159,12 +159,14 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpmime</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/components/camel-cxf/camel-cxf-spring-soap/pom.xml b/components/camel-cxf/camel-cxf-spring-soap/pom.xml
index b3f4e518db6..aea9102b455 100644
--- a/components/camel-cxf/camel-cxf-spring-soap/pom.xml
+++ b/components/camel-cxf/camel-cxf-spring-soap/pom.xml
@@ -166,6 +166,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/components/camel-geocoder/pom.xml b/components/camel-geocoder/pom.xml
index acad11d60de..fff08e2d076 100644
--- a/components/camel-geocoder/pom.xml
+++ b/components/camel-geocoder/pom.xml
@@ -58,6 +58,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
 
         <!-- testing -->
diff --git a/components/camel-graphql/pom.xml b/components/camel-graphql/pom.xml
index de914014a41..9f3cc2ad5ce 100644
--- a/components/camel-graphql/pom.xml
+++ b/components/camel-graphql/pom.xml
@@ -45,6 +45,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
 
         <!-- for testing -->
diff --git a/components/camel-http/pom.xml b/components/camel-http/pom.xml
index 234eae4f64d..adef0004b6f 100644
--- a/components/camel-http/pom.xml
+++ b/components/camel-http/pom.xml
@@ -58,6 +58,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
 
         <!-- testing -->
diff --git a/components/camel-jetty/pom.xml b/components/camel-jetty/pom.xml
index a4ad1a5673a..1491334e171 100644
--- a/components/camel-jetty/pom.xml
+++ b/components/camel-jetty/pom.xml
@@ -157,11 +157,13 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpmime</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/components/camel-oaipmh/pom.xml b/components/camel-oaipmh/pom.xml
index 1ad6ada1df4..6e689a63c13 100644
--- a/components/camel-oaipmh/pom.xml
+++ b/components/camel-oaipmh/pom.xml
@@ -46,6 +46,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
         <dependency>
             <groupId>org.jsoup</groupId>
diff --git a/components/camel-solr/pom.xml b/components/camel-solr/pom.xml
index 53d5fb139af..28033511ec3 100644
--- a/components/camel-solr/pom.xml
+++ b/components/camel-solr/pom.xml
@@ -60,10 +60,12 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpmime</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.zookeeper</groupId>
diff --git a/components/camel-spring-ws/pom.xml b/components/camel-spring-ws/pom.xml
index 691bb2f2b79..24dcbc0bdaa 100644
--- a/components/camel-spring-ws/pom.xml
+++ b/components/camel-spring-ws/pom.xml
@@ -124,6 +124,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/components/camel-undertow/pom.xml b/components/camel-undertow/pom.xml
index 4e8c6f6e139..4005eadd8c1 100644
--- a/components/camel-undertow/pom.xml
+++ b/components/camel-undertow/pom.xml
@@ -140,6 +140,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpmime</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/components/camel-weather/pom.xml b/components/camel-weather/pom.xml
index a4c45c2a6cc..6423dc23fbb 100644
--- a/components/camel-weather/pom.xml
+++ b/components/camel-weather/pom.xml
@@ -40,6 +40,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
         </dependency>
 
         <!-- Jackson -->
diff --git a/components/camel-wordpress/pom.xml b/components/camel-wordpress/pom.xml
index a4f0557ffd9..55d0d3f40ed 100644
--- a/components/camel-wordpress/pom.xml
+++ b/components/camel-wordpress/pom.xml
@@ -56,6 +56,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
+            <version>${httpclient4-version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/components/camel-workday/pom.xml b/components/camel-workday/pom.xml
index 1e0cbe9cb90..c46089089bd 100644
--- a/components/camel-workday/pom.xml
+++ b/components/camel-workday/pom.xml
@@ -37,10 +37,12 @@
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpclient</artifactId>
+      <version>${httpclient4-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpmime</artifactId>
+      <version>${httpclient4-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>