Remove commons-logging excludes

The spring-jcl module has been removed in Spring Framework 7 in
favor of Commons Logging 1.3. This commit removes the excludes
for commons-logging:commons-logging that werew required to ensure
that spring-jcl was used instead but that are no longer needed.

See gh-955
This commit is contained in:
Andy Wilkinson
2025-02-03 10:00:28 +00:00
parent 0b103fdc0e
commit 8fd536c637
2 changed files with 2 additions and 6 deletions

View File

@@ -11,9 +11,7 @@ dependencies {
internal(platform(project(":spring-restdocs-platform")))
testImplementation("junit:junit")
testImplementation("org.apache.pdfbox:pdfbox") {
exclude group: "commons-logging", module: "commons-logging"
}
testImplementation("org.apache.pdfbox:pdfbox")
testImplementation("org.assertj:assertj-core")
testImplementation("org.springframework:spring-core")

View File

@@ -8,9 +8,7 @@ description = "Spring REST Docs REST Assured"
dependencies {
api(project(":spring-restdocs-core"))
api("io.rest-assured:rest-assured") {
exclude group: "commons-logging", module: "commons-logging"
}
api("io.rest-assured:rest-assured")
implementation("org.springframework:spring-web")
internal(platform(project(":spring-restdocs-platform")))