Remove javax.inject

Issue gh-10501
This commit is contained in:
Rob Winch 2022-01-14 16:35:45 -06:00
parent 44bc953a39
commit 11df19406b
2 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,7 @@ dependencies {
testImplementation project(path : ':spring-security-saml2-service-provider', configuration : 'tests') testImplementation project(path : ':spring-security-saml2-service-provider', configuration : 'tests')
testImplementation project(path : ':spring-security-saml2-service-provider', configuration : 'opensaml4MainImplementation') testImplementation project(path : ':spring-security-saml2-service-provider', configuration : 'opensaml4MainImplementation')
testImplementation project(path : ':spring-security-web', configuration : 'tests') testImplementation project(path : ':spring-security-web', configuration : 'tests')
testImplementation "jakarta.inject:jakarta.inject-api"
testImplementation "org.assertj:assertj-core" testImplementation "org.assertj:assertj-core"
testImplementation "org.junit.jupiter:junit-jupiter-api" testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.jupiter:junit-jupiter-params" testImplementation "org.junit.jupiter:junit-jupiter-params"

View File

@ -10,6 +10,7 @@ dependencies {
api project(':spring-security-web') api project(':spring-security-web')
api('com.google.inject:guice') { api('com.google.inject:guice') {
exclude group: 'aopalliance', module: 'aopalliance' exclude group: 'aopalliance', module: 'aopalliance'
exclude group: 'javax.inject', module: 'javax.inject'
} }
// 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.