File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 3.4.4
2+ - Update log4j dependency to 2.17.0
3+
14## 3.4.3
25 - Update log4j dependency to 2.15.0
36 - Fix: update to Gradle 7 [ #145 ] ( https://github.com/logstash-plugins/logstash-input-http/pull/145 )
Original file line number Diff line number Diff line change 1- 3.4.3
1+ 3.4.4
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ version rootProject.file('VERSION').text.trim()
1010
1111description = " HTTP Input Netty implementation"
1212
13+ String log4jVersion = ' 2.17.0'
14+
1315sourceCompatibility = 1.8
1416targetCompatibility = 1.8
1517
@@ -20,10 +22,10 @@ repositories {
2022dependencies {
2123 testImplementation ' junit:junit:4.12'
2224 testImplementation ' org.hamcrest:hamcrest-library:1.3'
23- testImplementation ' org.apache.logging.log4j:log4j-core:2.15.0 '
25+ testImplementation " org.apache.logging.log4j:log4j-core:${ log4jVersion } "
2426
2527 implementation ' io.netty:netty-all:4.1.65.Final'
26- implementation ' org.apache.logging.log4j:log4j-api:2.15.0 '
28+ implementation " org.apache.logging.log4j:log4j-api:${ log4jVersion } "
2729}
2830
2931test {
You can’t perform that action at this time.
0 commit comments