Skip to content

Commit 62449d6

Browse files
committed
Remove commons-logging
Closes gh-10499
1 parent aa06088 commit 62449d6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

config/spring-security-config.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ dependencies {
8181
testImplementation "org.mockito:mockito-inline"
8282
testImplementation ('org.openid4java:openid4java-nodeps') {
8383
exclude group: 'com.google.code.guice', module: 'guice'
84+
exclude group: 'commons-logging', module: 'commons-logging'
8485
}
8586
testImplementation('org.seleniumhq.selenium:htmlunit-driver') {
8687
exclude group: 'commons-logging', module: 'commons-logging'

dependencies/spring-security-dependencies.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ dependencies {
2525
api "com.unboundid:unboundid-ldapsdk:4.0.14"
2626
api "commons-codec:commons-codec:1.15"
2727
api "commons-collections:commons-collections:3.2.2"
28-
api "commons-logging:commons-logging:1.2"
2928
api "io.mockk:mockk:1.12.1"
3029
api "io.projectreactor.tools:blockhound:1.0.6.RELEASE"
3130
api "javax.annotation:jsr250-api:1.0"

openid/spring-security-openid.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies {
1616
// We use the maven central version here instead.
1717
api('org.openid4java:openid4java-nodeps') {
1818
exclude group: 'com.google.code.guice', module: 'guice'
19+
exclude group: 'commons-logging', module: 'commons-logging'
1920
}
2021
api 'org.springframework:spring-aop'
2122
api 'org.springframework:spring-beans'
@@ -26,7 +27,9 @@ dependencies {
2627
provided 'javax.servlet:javax.servlet-api'
2728

2829
runtimeOnly 'net.sourceforge.nekohtml:nekohtml'
29-
runtimeOnly 'org.apache.httpcomponents:httpclient'
30+
runtimeOnly('org.apache.httpcomponents:httpclient') {
31+
exclude group: 'commons-logging', module: 'commons-logging'
32+
}
3033

3134
testImplementation "org.assertj:assertj-core"
3235
testImplementation "org.junit.jupiter:junit-jupiter-api"

0 commit comments

Comments
 (0)