chore: upgrade log4j dependencies (#1615)

pull/1621/head
guqing 2022-01-06 12:50:17 +08:00 committed by GitHub
parent 13bbae6b19
commit 23b39519e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -34,10 +34,10 @@ configurations {
} }
configurations.all { configurations.all {
// Aligning log4j dependency versions to 2.17.0 // Aligning log4j dependency versions to 2.17.1
resolutionStrategy.eachDependency { DependencyResolveDetails details -> resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'org.apache.logging.log4j') { if (details.requested.group == 'org.apache.logging.log4j') {
details.useVersion '2.17.0' details.useVersion '2.17.1'
} }
} }
} }