Skip to content

Commit

Permalink
SHIBUI-2264
Browse files Browse the repository at this point in the history
Closed vulnerability from common-collections v3.x by upgrading to v4.3
  • Loading branch information
chasegawa committed May 10, 2022
1 parent f1fa283 commit 8e1019a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,11 @@ dependencies {
integrationTestCompile 'org.springframework.security:spring-security-test:5.6.3'

// CSV file support
compile 'com.opencsv:opencsv:4.4'
compile 'com.opencsv:opencsv:4.4', {
exclude group: 'commons-collections'
}

compile 'org.apache.commons:commons-collections4:4.3'

// Envers for persistent entities versioning
compile 'org.hibernate:hibernate-envers'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import groovy.util.logging.Slf4j
import groovy.xml.DOMBuilder
import groovy.xml.MarkupBuilder
import net.shibboleth.utilities.java.support.scripting.EvaluableScript
import org.apache.commons.collections.CollectionUtils
import org.apache.commons.collections4.CollectionUtils
import org.opensaml.saml.common.profile.logic.EntityIdPredicate
import org.opensaml.saml.metadata.resolver.MetadataResolver
import org.opensaml.saml.metadata.resolver.filter.MetadataFilter
Expand Down
2 changes: 2 additions & 0 deletions pac4j-module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ dependencies {
compile 'org.pac4j:pac4j-saml:5.4.3', {
// opensaml libraries are provided
exclude group: 'org.opensaml'
exclude group: 'commons-collections'
}
compile 'org.apache.commons:commons-collections4:4.3'

testCompile project(':backend')
testCompile 'org.springframework.boot:spring-boot-starter-test:2.6.7'
Expand Down

0 comments on commit 8e1019a

Please sign in to comment.