This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 936d467 CAMEL-13751: camel-caffeine: exclude transitive dependencies not required new ba8cc06 Merge pull request #3045 from lburgazzoli/CAMEL-13751 936d467 is described below commit 936d4673a0d0114d02fefda11309465d291ef3b5 Author: lburgazzoli <lburgazz...@gmail.com> AuthorDate: Tue Jul 16 17:42:20 2019 +0200 CAMEL-13751: camel-caffeine: exclude transitive dependencies not required --- parent/pom.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index b9bbd52..40f14f5 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -4230,7 +4230,17 @@ <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> - <version>${caffeine-version}</version> + <version>${caffeine-version}</version> + <exclusions> + <exclusion> + <groupId>org.checkerframework</groupId> + <artifactId>checker-qual</artifactId> + </exclusion> + <exclusion> + <groupId>com.google.errorprone</groupId> + <artifactId>error_prone_annotations</artifactId> + </exclusion> + </exclusions> </dependency> <!-- optional dependencies -->