Skip to content

Commit 8fd536c

Browse files
committed
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
1 parent 0b103fd commit 8fd536c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

spring-restdocs-asciidoctor/build.gradle

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ dependencies {
1111
internal(platform(project(":spring-restdocs-platform")))
1212

1313
testImplementation("junit:junit")
14-
testImplementation("org.apache.pdfbox:pdfbox") {
15-
exclude group: "commons-logging", module: "commons-logging"
16-
}
14+
testImplementation("org.apache.pdfbox:pdfbox")
1715
testImplementation("org.assertj:assertj-core")
1816
testImplementation("org.springframework:spring-core")
1917

spring-restdocs-restassured/build.gradle

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ description = "Spring REST Docs REST Assured"
88

99
dependencies {
1010
api(project(":spring-restdocs-core"))
11-
api("io.rest-assured:rest-assured") {
12-
exclude group: "commons-logging", module: "commons-logging"
13-
}
11+
api("io.rest-assured:rest-assured")
1412
implementation("org.springframework:spring-web")
1513

1614
internal(platform(project(":spring-restdocs-platform")))

0 commit comments

Comments
 (0)