Skip to content

Commit 68d9b71

Browse files
robbaveyjsvd
andauthored
Update log4j version to 2.17.0 (#148)
* Update log4j version to 2.16.0 * Update CHANGELOG.md * Update build.gradle Co-authored-by: João Duarte <jsvd@users.noreply.github.com>
1 parent 92e2865 commit 68d9b71

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.3
1+
3.4.4

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ version rootProject.file('VERSION').text.trim()
1010

1111
description = "HTTP Input Netty implementation"
1212

13+
String log4jVersion = '2.17.0'
14+
1315
sourceCompatibility = 1.8
1416
targetCompatibility = 1.8
1517

@@ -20,10 +22,10 @@ repositories {
2022
dependencies {
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

2931
test {

0 commit comments

Comments
 (0)