This is an automated email from the ASF dual-hosted git repository. martin_s pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/archiva.git
commit 69c8dd6b722aa0a7137f9c8aa3c8329ed51409a7 Author: Martin Stockhammer <[email protected]> AuthorDate: Mon Sep 2 11:23:33 2019 +0200 Exclude aopalliance dependency --- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pom.xml b/pom.xml index 0d355d0..27d496b 100644 --- a/pom.xml +++ b/pom.xml @@ -410,6 +410,10 @@ <groupId>org.apache.maven.resolver</groupId> <artifactId>*</artifactId> </exclusion> + <exclusion> + <groupId>aopalliance</groupId> + <artifactId>aopalliance</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -604,6 +608,12 @@ <artifactId>guice</artifactId> <version>4.1.0</version> <classifier>no_aop</classifier> + <exclusions> + <exclusion> + <groupId>aopalliance</groupId> + <artifactId>aopalliance</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
