Exclude transitive aopalliance

This commit is contained in:
Rob Winch 2017-09-22 12:10:30 -05:00
parent 496ea3e321
commit 773820158f
1 changed files with 3 additions and 1 deletions

View File

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