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 1a17272d6b279d733b3a1451e675841c076cec5e
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Jan 16 18:45:28 2023 +0100

    CAMEL-18936 - components - Add log4j-core so logging to logfile works
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 components/camel-as2/camel-as2-api/pom.xml                  |  6 ------
 components/camel-avro-rpc/camel-avro-rpc-component/pom.xml  |  7 +------
 components/camel-aws/camel-aws-cloudtrail/pom.xml           |  5 -----
 components/camel-aws/camel-aws-secrets-manager/pom.xml      |  5 -----
 components/camel-aws/camel-aws-xray/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-athena/pom.xml              |  5 -----
 components/camel-aws/camel-aws2-cw/pom.xml                  |  5 -----
 components/camel-aws/camel-aws2-ddb/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-ec2/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-ecs/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-eks/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-eventbridge/pom.xml         |  5 -----
 components/camel-aws/camel-aws2-iam/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-kinesis/pom.xml             |  5 -----
 components/camel-aws/camel-aws2-kms/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-lambda/pom.xml              |  5 -----
 components/camel-aws/camel-aws2-mq/pom.xml                  |  5 -----
 components/camel-aws/camel-aws2-msk/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-s3/pom.xml                  |  5 -----
 components/camel-aws/camel-aws2-ses/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-sns/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-sqs/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-sts/pom.xml                 |  5 -----
 components/camel-aws/camel-aws2-translate/pom.xml           |  5 -----
 components/camel-azure/camel-azure-cosmosdb/pom.xml         |  5 -----
 components/camel-azure/camel-azure-eventhubs/pom.xml        |  5 -----
 components/camel-azure/camel-azure-key-vault/pom.xml        |  5 -----
 components/camel-azure/camel-azure-servicebus/pom.xml       |  5 -----
 components/camel-azure/camel-azure-storage-blob/pom.xml     |  5 -----
 components/camel-azure/camel-azure-storage-datalake/pom.xml |  5 -----
 components/camel-azure/camel-azure-storage-queue/pom.xml    |  5 -----
 components/camel-box/camel-box-component/pom.xml            | 11 -----------
 components/camel-cxf/camel-cxf-rest/pom.xml                 |  6 ------
 components/camel-cxf/camel-cxf-soap/pom.xml                 |  6 ------
 34 files changed, 1 insertion(+), 180 deletions(-)

diff --git a/components/camel-as2/camel-as2-api/pom.xml 
b/components/camel-as2/camel-as2-api/pom.xml
index 4f65fdea8e7..67b0280379d 100644
--- a/components/camel-as2/camel-as2-api/pom.xml
+++ b/components/camel-as2/camel-as2-api/pom.xml
@@ -79,12 +79,6 @@
             <version>${velocity-version}</version>
         </dependency>
 
-        <!-- logging -->
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-        </dependency>
-
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-util</artifactId>
diff --git a/components/camel-avro-rpc/camel-avro-rpc-component/pom.xml 
b/components/camel-avro-rpc/camel-avro-rpc-component/pom.xml
index 27944af3fe9..1aa03d7ea9d 100644
--- a/components/camel-avro-rpc/camel-avro-rpc-component/pom.xml
+++ b/components/camel-avro-rpc/camel-avro-rpc-component/pom.xml
@@ -63,11 +63,6 @@
             <artifactId>camel-spring-xml</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 
     <profiles>
@@ -103,4 +98,4 @@
         </profile>
     </profiles>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/components/camel-aws/camel-aws-cloudtrail/pom.xml 
b/components/camel-aws/camel-aws-cloudtrail/pom.xml
index 13ccda03a64..3147a63c31d 100644
--- a/components/camel-aws/camel-aws-cloudtrail/pom.xml
+++ b/components/camel-aws/camel-aws-cloudtrail/pom.xml
@@ -62,11 +62,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-core</artifactId>
diff --git a/components/camel-aws/camel-aws-secrets-manager/pom.xml 
b/components/camel-aws/camel-aws-secrets-manager/pom.xml
index a6406e30f58..9a403fcdf33 100644
--- a/components/camel-aws/camel-aws-secrets-manager/pom.xml
+++ b/components/camel-aws/camel-aws-secrets-manager/pom.xml
@@ -77,11 +77,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws-xray/pom.xml 
b/components/camel-aws/camel-aws-xray/pom.xml
index 77449bfc9bb..627d09ad26a 100644
--- a/components/camel-aws/camel-aws-xray/pom.xml
+++ b/components/camel-aws/camel-aws-xray/pom.xml
@@ -98,11 +98,6 @@
             <version>${commons-lang3-version}</version>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.awaitility</groupId>
             <artifactId>awaitility</artifactId>
diff --git a/components/camel-aws/camel-aws2-athena/pom.xml 
b/components/camel-aws/camel-aws2-athena/pom.xml
index 1dffde3e3dd..ebac0138060 100644
--- a/components/camel-aws/camel-aws2-athena/pom.xml
+++ b/components/camel-aws/camel-aws2-athena/pom.xml
@@ -67,11 +67,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-junit-jupiter</artifactId>
diff --git a/components/camel-aws/camel-aws2-cw/pom.xml 
b/components/camel-aws/camel-aws2-cw/pom.xml
index e1c6ae7e2b5..b04716761f6 100644
--- a/components/camel-aws/camel-aws2-cw/pom.xml
+++ b/components/camel-aws/camel-aws2-cw/pom.xml
@@ -66,11 +66,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws2-ddb/pom.xml 
b/components/camel-aws/camel-aws2-ddb/pom.xml
index faa8529b85f..ebb59902eaa 100644
--- a/components/camel-aws/camel-aws2-ddb/pom.xml
+++ b/components/camel-aws/camel-aws2-ddb/pom.xml
@@ -66,11 +66,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws2-ec2/pom.xml 
b/components/camel-aws/camel-aws2-ec2/pom.xml
index f3868ef0f77..dfda05fe1f7 100644
--- a/components/camel-aws/camel-aws2-ec2/pom.xml
+++ b/components/camel-aws/camel-aws2-ec2/pom.xml
@@ -66,11 +66,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws2-ecs/pom.xml 
b/components/camel-aws/camel-aws2-ecs/pom.xml
index 99d7cfe4df4..4c015cd1652 100644
--- a/components/camel-aws/camel-aws2-ecs/pom.xml
+++ b/components/camel-aws/camel-aws2-ecs/pom.xml
@@ -66,11 +66,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.awaitility</groupId>
             <artifactId>awaitility</artifactId>
diff --git a/components/camel-aws/camel-aws2-eks/pom.xml 
b/components/camel-aws/camel-aws2-eks/pom.xml
index fddb781ff36..d800f9b43d8 100644
--- a/components/camel-aws/camel-aws2-eks/pom.xml
+++ b/components/camel-aws/camel-aws2-eks/pom.xml
@@ -67,11 +67,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <dependency>
             <groupId>org.apache.camel</groupId>
diff --git a/components/camel-aws/camel-aws2-eventbridge/pom.xml 
b/components/camel-aws/camel-aws2-eventbridge/pom.xml
index c744b9c76f5..3b604c43e23 100644
--- a/components/camel-aws/camel-aws2-eventbridge/pom.xml
+++ b/components/camel-aws/camel-aws2-eventbridge/pom.xml
@@ -61,11 +61,6 @@
             <artifactId>camel-test-spring-junit5</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-aws2-s3</artifactId>
diff --git a/components/camel-aws/camel-aws2-iam/pom.xml 
b/components/camel-aws/camel-aws2-iam/pom.xml
index 55cad5af0a0..5c3c018c272 100644
--- a/components/camel-aws/camel-aws2-iam/pom.xml
+++ b/components/camel-aws/camel-aws2-iam/pom.xml
@@ -66,11 +66,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws2-kinesis/pom.xml 
b/components/camel-aws/camel-aws2-kinesis/pom.xml
index bb0e32fabb9..fe022c24afd 100644
--- a/components/camel-aws/camel-aws2-kinesis/pom.xml
+++ b/components/camel-aws/camel-aws2-kinesis/pom.xml
@@ -71,11 +71,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-junit-jupiter</artifactId>
diff --git a/components/camel-aws/camel-aws2-kms/pom.xml 
b/components/camel-aws/camel-aws2-kms/pom.xml
index 105c64f661b..00b3a322933 100644
--- a/components/camel-aws/camel-aws2-kms/pom.xml
+++ b/components/camel-aws/camel-aws2-kms/pom.xml
@@ -64,11 +64,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws2-lambda/pom.xml 
b/components/camel-aws/camel-aws2-lambda/pom.xml
index 41ca9816395..4e15beeb148 100644
--- a/components/camel-aws/camel-aws2-lambda/pom.xml
+++ b/components/camel-aws/camel-aws2-lambda/pom.xml
@@ -64,11 +64,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws2-mq/pom.xml 
b/components/camel-aws/camel-aws2-mq/pom.xml
index c2cb1dcd1ba..4d68aa8eefb 100644
--- a/components/camel-aws/camel-aws2-mq/pom.xml
+++ b/components/camel-aws/camel-aws2-mq/pom.xml
@@ -62,10 +62,5 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 </project>
diff --git a/components/camel-aws/camel-aws2-msk/pom.xml 
b/components/camel-aws/camel-aws2-msk/pom.xml
index 3b3ee248002..c137711bfa0 100644
--- a/components/camel-aws/camel-aws2-msk/pom.xml
+++ b/components/camel-aws/camel-aws2-msk/pom.xml
@@ -75,11 +75,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.awaitility</groupId>
             <artifactId>awaitility</artifactId>
diff --git a/components/camel-aws/camel-aws2-s3/pom.xml 
b/components/camel-aws/camel-aws2-s3/pom.xml
index ba08fbd7052..9e59ed260c7 100644
--- a/components/camel-aws/camel-aws2-s3/pom.xml
+++ b/components/camel-aws/camel-aws2-s3/pom.xml
@@ -66,11 +66,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-zip-deflater</artifactId>
diff --git a/components/camel-aws/camel-aws2-ses/pom.xml 
b/components/camel-aws/camel-aws2-ses/pom.xml
index 91ae8dcfb3f..1205c6b4476 100644
--- a/components/camel-aws/camel-aws2-ses/pom.xml
+++ b/components/camel-aws/camel-aws2-ses/pom.xml
@@ -80,11 +80,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.awaitility</groupId>
             <artifactId>awaitility</artifactId>
diff --git a/components/camel-aws/camel-aws2-sns/pom.xml 
b/components/camel-aws/camel-aws2-sns/pom.xml
index 30e1fb1db7f..c4b99a7fd4e 100644
--- a/components/camel-aws/camel-aws2-sns/pom.xml
+++ b/components/camel-aws/camel-aws2-sns/pom.xml
@@ -91,11 +91,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-junit-jupiter</artifactId>
diff --git a/components/camel-aws/camel-aws2-sqs/pom.xml 
b/components/camel-aws/camel-aws2-sqs/pom.xml
index 78a9e4a1bfb..1834ec9fd5e 100644
--- a/components/camel-aws/camel-aws2-sqs/pom.xml
+++ b/components/camel-aws/camel-aws2-sqs/pom.xml
@@ -80,10 +80,5 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 </project>
diff --git a/components/camel-aws/camel-aws2-sts/pom.xml 
b/components/camel-aws/camel-aws2-sts/pom.xml
index a32f992d7ef..e3d6b5b3a00 100644
--- a/components/camel-aws/camel-aws2-sts/pom.xml
+++ b/components/camel-aws/camel-aws2-sts/pom.xml
@@ -62,11 +62,6 @@
             <artifactId>camel-core-catalog</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <!-- test infra -->
         <dependency>
diff --git a/components/camel-aws/camel-aws2-translate/pom.xml 
b/components/camel-aws/camel-aws2-translate/pom.xml
index d9609204a9d..1102d25b003 100644
--- a/components/camel-aws/camel-aws2-translate/pom.xml
+++ b/components/camel-aws/camel-aws2-translate/pom.xml
@@ -57,10 +57,5 @@
             <artifactId>camel-test-spring-junit5</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 </project>
diff --git a/components/camel-azure/camel-azure-cosmosdb/pom.xml 
b/components/camel-azure/camel-azure-cosmosdb/pom.xml
index cc9ed2272c0..1beb696b244 100644
--- a/components/camel-azure/camel-azure-cosmosdb/pom.xml
+++ b/components/camel-azure/camel-azure-cosmosdb/pom.xml
@@ -59,11 +59,6 @@
             <artifactId>camel-test-junit5</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-core</artifactId>
diff --git a/components/camel-azure/camel-azure-eventhubs/pom.xml 
b/components/camel-azure/camel-azure-eventhubs/pom.xml
index 4d9043d99aa..c1e6a518dc4 100644
--- a/components/camel-azure/camel-azure-eventhubs/pom.xml
+++ b/components/camel-azure/camel-azure-eventhubs/pom.xml
@@ -67,11 +67,6 @@
             <artifactId>camel-test-junit5</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-core</artifactId>
diff --git a/components/camel-azure/camel-azure-key-vault/pom.xml 
b/components/camel-azure/camel-azure-key-vault/pom.xml
index ab7e04d1570..42ef407c2a2 100644
--- a/components/camel-azure/camel-azure-key-vault/pom.xml
+++ b/components/camel-azure/camel-azure-key-vault/pom.xml
@@ -75,11 +75,6 @@
             <artifactId>camel-test-junit5</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-core</artifactId>
diff --git a/components/camel-azure/camel-azure-servicebus/pom.xml 
b/components/camel-azure/camel-azure-servicebus/pom.xml
index 87cddeff609..b0f77568372 100644
--- a/components/camel-azure/camel-azure-servicebus/pom.xml
+++ b/components/camel-azure/camel-azure-servicebus/pom.xml
@@ -63,11 +63,6 @@
             <artifactId>camel-test-junit5</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-core</artifactId>
diff --git a/components/camel-azure/camel-azure-storage-blob/pom.xml 
b/components/camel-azure/camel-azure-storage-blob/pom.xml
index 86cccb5f531..98e3bfbc54e 100644
--- a/components/camel-azure/camel-azure-storage-blob/pom.xml
+++ b/components/camel-azure/camel-azure-storage-blob/pom.xml
@@ -89,11 +89,6 @@
             <artifactId>log4j-slf4j2-impl</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.mockito</groupId>
-            <artifactId>mockito-junit-jupiter</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-lang3</artifactId>
diff --git a/components/camel-azure/camel-azure-storage-datalake/pom.xml 
b/components/camel-azure/camel-azure-storage-datalake/pom.xml
index ac18ef33983..af2e5eaf9ef 100644
--- a/components/camel-azure/camel-azure-storage-datalake/pom.xml
+++ b/components/camel-azure/camel-azure-storage-datalake/pom.xml
@@ -61,11 +61,6 @@
             <artifactId>log4j-core</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-junit-jupiter</artifactId>
diff --git a/components/camel-azure/camel-azure-storage-queue/pom.xml 
b/components/camel-azure/camel-azure-storage-queue/pom.xml
index 3e6e8a66313..dc0de7162e3 100644
--- a/components/camel-azure/camel-azure-storage-queue/pom.xml
+++ b/components/camel-azure/camel-azure-storage-queue/pom.xml
@@ -76,11 +76,6 @@
             <artifactId>camel-test-junit5</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-junit-jupiter</artifactId>
diff --git a/components/camel-box/camel-box-component/pom.xml 
b/components/camel-box/camel-box-component/pom.xml
index 785b7aad5b8..b881479adb4 100644
--- a/components/camel-box/camel-box-component/pom.xml
+++ b/components/camel-box/camel-box-component/pom.xml
@@ -70,17 +70,6 @@
             <version>${jsoup-version}</version>
         </dependency>
 
-        <!-- logging -->
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
-
         <!-- testing -->
         <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 dddf9f4c3fb..da15f235392 100644
--- a/components/camel-cxf/camel-cxf-rest/pom.xml
+++ b/components/camel-cxf/camel-cxf-rest/pom.xml
@@ -169,12 +169,6 @@
             <scope>test</scope>
         </dependency>
 
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
-
         <dependency>
             <groupId>org.junit.jupiter</groupId>
             <artifactId>junit-jupiter</artifactId>
diff --git a/components/camel-cxf/camel-cxf-soap/pom.xml 
b/components/camel-cxf/camel-cxf-soap/pom.xml
index 358790745e6..8e769e5b719 100644
--- a/components/camel-cxf/camel-cxf-soap/pom.xml
+++ b/components/camel-cxf/camel-cxf-soap/pom.xml
@@ -178,12 +178,6 @@
             <scope>test</scope>
         </dependency>
 
-        <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j2-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
-
         <dependency>
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-testutils</artifactId>

Reply via email to