Browse Source

Exclude transitive aopalliance

Rob Winch 8 years ago
parent
commit
773820158f
1 changed files with 3 additions and 1 deletions
  1. 3 1
      openid/spring-security-openid.gradle

+ 3 - 1
openid/spring-security-openid.gradle

@@ -3,7 +3,9 @@ apply plugin: 'io.spring.convention.spring-module'
 dependencies {
 	compile project(':spring-security-core')
 	compile project(':spring-security-web')
-	compile 'com.google.inject:guice'
+	compile('com.google.inject:guice') {
+		exclude group: 'aopalliance', module: 'aopalliance'
+	}
 	// openid4java has a compile time dep on guice with a group
 	// name which is different from the maven central one.
 	// We use the maven central version here instead.