mirror of https://github.com/halo-dev/halo
fix: Log4j Security Vulnerabilities (#1604)
update Log4j version to 2.17.0 - CVE-2021-45105 Fixed in Log4j 2.17.0 (Java 8) - CVE-2021-45046 Fixed in Log4j 2.16.0 (Java 8)pull/1614/head
parent
9ddd74b74b
commit
201e93465c
|
@ -34,10 +34,10 @@ configurations {
|
|||
}
|
||||
|
||||
configurations.all {
|
||||
// Aligning log4j dependency versions to 2.15.0
|
||||
// Aligning log4j dependency versions to 2.17.0
|
||||
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
|
||||
if (details.requested.group == 'org.apache.logging.log4j') {
|
||||
details.useVersion '2.15.0'
|
||||
details.useVersion '2.17.0'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue