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

[camel] branch main updated: CAMEL-19163: Add exclusion for overridden google-api-client in camel-google-main and camel-google-sheets

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 94ef96d0b52 CAMEL-19163: Add exclusion for overridden google-api-client in camel-google-main and camel-google-sheets
94ef96d0b52 is described below

commit 94ef96d0b52372efbd78d80a57f0ccfc70338ab3
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu May 11 08:51:55 2023 +0100

    CAMEL-19163: Add exclusion for overridden google-api-client in camel-google-main and camel-google-sheets
---
 components/camel-google/camel-google-mail/pom.xml   | 6 ++++++
 components/camel-google/camel-google-sheets/pom.xml | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/components/camel-google/camel-google-mail/pom.xml b/components/camel-google/camel-google-mail/pom.xml
index 2058f162ed4..5193d6d7145 100644
--- a/components/camel-google/camel-google-mail/pom.xml
+++ b/components/camel-google/camel-google-mail/pom.xml
@@ -130,6 +130,12 @@
             <groupId>com.google.apis</groupId>
             <artifactId>google-api-services-gmail</artifactId>
             <version>${google-api-services-mail-version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.api-client</groupId>
+                    <artifactId>google-api-client</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/components/camel-google/camel-google-sheets/pom.xml b/components/camel-google/camel-google-sheets/pom.xml
index d051712de16..2b2111b2dda 100644
--- a/components/camel-google/camel-google-sheets/pom.xml
+++ b/components/camel-google/camel-google-sheets/pom.xml
@@ -119,6 +119,12 @@
             <groupId>com.google.apis</groupId>
             <artifactId>google-api-services-sheets</artifactId>
             <version>${google-api-services-sheets-version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.api-client</groupId>
+                    <artifactId>google-api-client</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <!-- testing -->