This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch 3.8.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit da8e9589e9e420a3a7977ec523e330f8fbc65933 Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Tue Apr 16 16:05:32 2024 +0200 Ban com.google.guava:listenablefuture because it does not contain any code anyway --- poms/bom/pom.xml | 24 ++++++++++++++++++++++ .../camel-quarkus-banned-dependencies.xml | 1 + 2 files changed, 25 insertions(+) diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index 90ccc532bd..2afe3140e5 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -870,6 +870,10 @@ <artifactId>camel-drill</artifactId> <version>${camel.version}</version> <exclusions> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </exclusion> <exclusion> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> @@ -1066,6 +1070,10 @@ <groupId>com.google.android</groupId> <artifactId>annotations</artifactId> </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> @@ -1119,6 +1127,10 @@ <groupId>com.google.android</groupId> <artifactId>annotations</artifactId> </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> @@ -1188,6 +1200,10 @@ <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> @@ -1226,6 +1242,10 @@ <groupId>com.google.android</groupId> <artifactId>annotations</artifactId> </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </exclusion> <exclusion> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> @@ -6238,6 +6258,10 @@ <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> diff --git a/tooling/enforcer-rules/camel-quarkus-banned-dependencies.xml b/tooling/enforcer-rules/camel-quarkus-banned-dependencies.xml index 5a0874211f..25646eb02b 100644 --- a/tooling/enforcer-rules/camel-quarkus-banned-dependencies.xml +++ b/tooling/enforcer-rules/camel-quarkus-banned-dependencies.xml @@ -25,6 +25,7 @@ <exclude>com.github.spotbugs:spotbugs-annotations</exclude><!-- Similar to findbugs. Not needed for compilation or at runtime --> <exclude>com.github.stephenc.jcip:jcip-annotations</exclude><!-- Should not be needed for compilation nor at runtime --> <exclude>com.google.code.findbugs:jsr305</exclude> + <exclude>com.google.guava:listenablefuture</exclude><!-- does not contain any code, thus fine to exclude --> <exclude>com.sun.activation:javax.activation</exclude><!-- use jakarta.activation:jakarta.activation-api and angus-activation instead --> <exclude>com.sun.activation:jakarta.activation</exclude><!-- use jakarta.activation:jakarta.activation-api and angus-activation instead --> <exclude>com.sun.mail:javax.mail</exclude><!-- use angus-mail and jakarta.mail:jakarta.mail-api instead -->