This repository was archived by the owner on Feb 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed
data-prepper-plugins/elasticsearch Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -14,25 +14,25 @@ subprojects {
14
14
sourceCompatibility = ' 1.8'
15
15
dependencies {
16
16
implementation " com.google.guava:guava:29.0-jre"
17
- implementation ' org.apache.logging.log4j:log4j-core:2.16 .0'
17
+ implementation ' org.apache.logging.log4j:log4j-core:2.17 .0'
18
18
implementation " org.slf4j:slf4j-api:1.7.30"
19
- implementation ' org.apache.logging.log4j:log4j-slf4j-impl:2.16 .0'
19
+ implementation ' org.apache.logging.log4j:log4j-slf4j-impl:2.17 .0'
20
20
testImplementation(" junit:junit:4.13" ) {
21
21
exclude group : ' org.hamcrest' // workaround for jarHell
22
22
}
23
23
constraints {
24
24
implementation(' org.apache.logging.log4j:log4j-core' ) {
25
25
version {
26
- require ' 2.16 .0'
26
+ require ' 2.17 .0'
27
27
}
28
- because ' Log4j 2.16 .0 fixes CVE-2021-44228 and CVE-2021-45046 '
28
+ because ' Log4j 2.17 .0 fixes CVE-2021-44228, CVE-2021-45046, and CVE-2021-45105 '
29
29
}
30
- }
31
- implementation(' org.apache.logging.log4j:log4j-api' ) {
32
- version {
33
- require ' 2.16.0'
30
+ implementation(' org.apache.logging.log4j:log4j-api' ) {
31
+ version {
32
+ require ' 2.17.0'
33
+ }
34
+ because ' the build fails if the Log4j API is not update along with log4j-core'
34
35
}
35
- because ' the build fails if the Log4j API is not update along with log4j-core'
36
36
}
37
37
}
38
38
build. dependsOn test
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ configurations.all {
67
67
force ' com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.12.3'
68
68
force ' junit:junit:4.13'
69
69
force " org.slf4j:slf4j-api:1.7.30"
70
- force ' org.apache.logging.log4j:log4j-api:2.16 .0'
71
- force ' org.apache.logging.log4j:log4j-core:2.16 .0'
70
+ force ' org.apache.logging.log4j:log4j-api:2.17 .0'
71
+ force ' org.apache.logging.log4j:log4j-core:2.17 .0'
72
72
}
73
73
}
74
74
You can’t perform that action at this time.
0 commit comments