Skip to content

Commit 22534b1

Browse files
authored
Build: do not package log4j-api dependency (#149)
1 parent 68d9b71 commit 22534b1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.4.5
2+
- Build: do not package log4j-api dependency [#149](https://github.com/logstash-plugins/logstash-input-http/pull/149).
3+
Logstash provides the log4j framework and the dependency is not needed except testing and compiling.
4+
15
## 3.4.4
26
- Update log4j dependency to 2.17.0
37

VERSION

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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
testImplementation "org.apache.logging.log4j:log4j-core:${log4jVersion}"
2626

2727
implementation 'io.netty:netty-all:4.1.65.Final'
28-
implementation "org.apache.logging.log4j:log4j-api:${log4jVersion}"
28+
compileOnly "org.apache.logging.log4j:log4j-api:${log4jVersion}" // provided by Logstash
2929
}
3030

3131
test {

0 commit comments

Comments
 (0)