Skip to content

Commit 6e5c9b2

Browse files
authored
Build: make log4j-api a provided dependency (#73)
1 parent 92ac81d commit 6e5c9b2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.4.3
2+
- Build: make log4j-api a provided dependency [#73](https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/73)
3+
14
## 1.4.2
25
- Update log4j dependencies to 2.17.0
36

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.2
1+
1.4.3

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ apply plugin: 'java'
55
apply plugin: 'idea'
66

77

8-
98
sourceCompatibility = 1.8
109
targetCompatibility = 1.8
1110

@@ -22,8 +21,8 @@ dependencies {
2221
implementation 'com.microsoft.azure:azure-storage:8.6.6'
2322
implementation 'com.google.code.gson:gson:2.8.5'
2423
implementation 'org.apache.qpid:proton-j:0.33.9'
25-
implementation 'org.apache.logging.log4j:log4j-api:2.17.0'
26-
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.0'
24+
compileOnly 'org.apache.logging.log4j:log4j-api:2.17.0' // provided by Logstash
25+
testImplementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.0' // provided by Logstash
2726
}
2827

2928

lib/logstash-input-azure_event_hubs.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,3 @@
77
require_jar('com.microsoft.azure', 'azure-storage', '8.6.6')
88
require_jar('com.google.code.gson', 'gson', '2.8.5')
99
require_jar('org.apache.qpid', 'proton-j', '0.33.9')
10-
require_jar('org.apache.logging.log4j', 'log4j-api', '2.15.0')
11-
require_jar('org.apache.logging.log4j', 'log4j-slf4j-impl', '2.15.0')

0 commit comments

Comments
 (0)