Skip to content

Commit

Permalink
Remove commons-logging from saml2
Browse files Browse the repository at this point in the history
Issue gh-10499
  • Loading branch information
jzheaux committed Dec 16, 2021
1 parent 2471e32 commit cbf0e1d
Showing 1 changed file with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,19 @@ dependencies {
management platform(project(":spring-security-dependencies"))
api project(':spring-security-web')
api "org.opensaml:opensaml-core"
api "org.opensaml:opensaml-saml-api"
api "org.opensaml:opensaml-saml-impl"
api ("org.opensaml:opensaml-saml-api") {
exclude group: 'commons-logging', module: 'commons-logging'
}
api ("org.opensaml:opensaml-saml-impl") {
exclude group: 'commons-logging', module: 'commons-logging'
}
opensaml4MainImplementation "org.opensaml:opensaml-core:4.1.0"
opensaml4MainImplementation "org.opensaml:opensaml-saml-api:4.1.0"
opensaml4MainImplementation "org.opensaml:opensaml-saml-impl:4.1.0"
opensaml4MainImplementation ("org.opensaml:opensaml-saml-api:4.1.0") {
exclude group: 'commons-logging', module: 'commons-logging'
}
opensaml4MainImplementation ("org.opensaml:opensaml-saml-impl:4.1.0") {
exclude group: 'commons-logging', module: 'commons-logging'
}

provided 'jakarta.servlet:jakarta.servlet-api'

Expand Down

0 comments on commit cbf0e1d

Please sign in to comment.