Use commons-logging directly

Closes gh-17061
This commit is contained in:
Rob Winch 2025-05-06 11:43:53 -05:00
parent b453840c0a
commit a80592a707
No known key found for this signature in database
2 changed files with 0 additions and 4 deletions

View File

@ -81,9 +81,6 @@ public class CheckClasspathForProhibitedDependencies extends DefaultTask {
if (group.startsWith("javax")) { if (group.startsWith("javax")) {
return true; return true;
} }
if (group.equals("commons-logging")) {
return true;
}
if (group.equals("org.slf4j") && id.getName().equals("jcl-over-slf4j")) { if (group.equals("org.slf4j") && id.getName().equals("jcl-over-slf4j")) {
return true; return true;
} }

View File

@ -2,7 +2,6 @@ apply plugin: 'io.spring.convention.spring-module'
dependencies { dependencies {
management platform(project(":spring-security-dependencies")) management platform(project(":spring-security-dependencies"))
optional 'org.springframework:spring-jcl'
optional 'org.springframework:spring-core' optional 'org.springframework:spring-core'
optional 'org.bouncycastle:bcpkix-jdk18on' optional 'org.bouncycastle:bcpkix-jdk18on'