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

[camel] 05/10: CAMEL-17237: Remove com.google.code.findbugs from dependencies

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.git

commit dd4fb7b9fd9006adadfc1ffd583bf8e3bd89e873
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Nov 26 10:00:45 2021 +0100

    CAMEL-17237: Remove com.google.code.findbugs from dependencies
---
 components/camel-xchange/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/components/camel-xchange/pom.xml b/components/camel-xchange/pom.xml
index b28086d..ab0fa9a 100644
--- a/components/camel-xchange/pom.xml
+++ b/components/camel-xchange/pom.xml
@@ -42,6 +42,12 @@
         <dependency>
             <groupId>org.knowm.xchange</groupId>
             <artifactId>xchange-core</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.code.findbugs</groupId>
+                    <artifactId>jsr305</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.knowm.xchange</groupId>
@@ -52,6 +58,12 @@
             <groupId>com.google.guava</groupId>
             <artifactId>guava</artifactId>
             <version>${xchange-guava-version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.code.findbugs</groupId>
+                    <artifactId>jsr305</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <!-- test dependencies -->