You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zb...@apache.org on 2021/12/24 09:48:11 UTC

[camel-quarkus] branch quarkus-main updated: Exclude commons-logging

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

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


The following commit(s) were added to refs/heads/quarkus-main by this push:
     new fe4b7b4  Exclude commons-logging
fe4b7b4 is described below

commit fe4b7b4792aae9ac49d60c5e98962dc195e670ea
Author: Zineb Bendhiba <be...@gmail.com>
AuthorDate: Fri Dec 24 10:47:54 2021 +0100

    Exclude commons-logging
---
 extensions-support/aws2/runtime/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/extensions-support/aws2/runtime/pom.xml b/extensions-support/aws2/runtime/pom.xml
index 82f9a03..de929fc 100644
--- a/extensions-support/aws2/runtime/pom.xml
+++ b/extensions-support/aws2/runtime/pom.xml
@@ -57,6 +57,16 @@
         <dependency>
             <groupId>software.amazon.awssdk</groupId>
             <artifactId>apache-client</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.logging</groupId>
+            <artifactId>commons-logging-jboss-logging</artifactId>
         </dependency>
     </dependencies>