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:18:59 UTC

[camel] 02/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 55ba7050be8886d78d39e3dda160239f3324e0bb
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Nov 26 09:55:36 2021 +0100

    CAMEL-17237: Remove com.google.code.findbugs from dependencies
---
 components/camel-cassandraql/pom.xml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/components/camel-cassandraql/pom.xml b/components/camel-cassandraql/pom.xml
index 8e5ad10..4368179 100644
--- a/components/camel-cassandraql/pom.xml
+++ b/components/camel-cassandraql/pom.xml
@@ -33,9 +33,6 @@
     <name>Camel :: Cassandra CQL</name>
     <description>Cassandra CQL3 support</description>
 
-    <properties>
-    </properties>
-
     <dependencies>
 
         <dependency>
@@ -47,6 +44,12 @@
         <dependency>
             <groupId>com.datastax.oss</groupId>
             <artifactId>java-driver-core</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.code.findbugs</groupId>
+                    <artifactId>jsr305</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>com.datastax.oss</groupId>