Skip to content

Commit 5d33a01

Browse files
committed
chore: exclude commons-logging dependency globally to avoid runtime warnings
1 parent e562ba1 commit 5d33a01

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

server/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ configurations {
7070
devRuntimeOnly.extendsFrom runtimeOnly
7171

7272
gatling.exclude group: "io.gatling.highcharts", module: "gatling-charts-highcharts"
73+
74+
// exclude commons-logging to avoid runtime warnings like these
75+
// Standard Commons Logging discovery in action with spring-jcl:
76+
// please remove commons-logging.jar from classpath in order to avoid potential conflicts
77+
configureEach {
78+
exclude group: "commons-logging", module: "commons-logging"
79+
}
7380
}
7481

7582
dependencyManagement {

0 commit comments

Comments
 (0)