Skip to content

Commit b523ef9

Browse files
author
Donald Tregonning
authored
update 3rd party libs (#179)
1 parent d43e5ed commit b523ef9

File tree

3 files changed

+24
-26
lines changed

3 files changed

+24
-26
lines changed

dependency-reduced-pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
<dependency>
183183
<groupId>org.slf4j</groupId>
184184
<artifactId>slf4j-simple</artifactId>
185-
<version>1.7.25</version>
185+
<version>1.7.26</version>
186186
<scope>test</scope>
187187
</dependency>
188188
<dependency>
@@ -210,5 +210,4 @@
210210
<maven.compiler.target>1.8</maven.compiler.target>
211211
<junit.version>4.12</junit.version>
212212
</properties>
213-
</project>
214-
213+
</project>

pom.xml

+7-8
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,27 @@
1818
<junit.jupiter.version>5.0.1</junit.jupiter.version>
1919
<junit.vintage.version>${junit.version}.1</junit.vintage.version>
2020
<junit.platform.version>1.0.1</junit.platform.version>
21-
2221
</properties>
2322

2423
<dependencies>
2524
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
2625
<dependency>
2726
<groupId>com.fasterxml.jackson.core</groupId>
2827
<artifactId>jackson-core</artifactId>
29-
<version>2.9.5</version>
28+
<version>2.9.8</version>
3029
<scope>compile</scope>
3130
</dependency>
3231
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
3332
<dependency>
3433
<groupId>com.fasterxml.jackson.core</groupId>
3534
<artifactId>jackson-databind</artifactId>
36-
<version>2.9.5</version>
35+
<version>2.9.8</version>
3736
<scope>compile</scope>
3837
</dependency>
3938
<dependency>
4039
<groupId>org.apache.kafka</groupId>
4140
<artifactId>connect-api</artifactId>
42-
<version>2.0.0</version>
41+
<version>2.2.0</version>
4342
<scope>compile</scope>
4443
</dependency>
4544
<dependency>
@@ -79,7 +78,7 @@
7978
<dependency>
8079
<groupId>org.apache.httpcomponents</groupId>
8180
<artifactId>httpclient</artifactId>
82-
<version>4.5.3</version>
81+
<version>4.5.8</version>
8382
<exclusions>
8483
<exclusion>
8584
<groupId>commons-logging</groupId>
@@ -102,22 +101,22 @@
102101
<dependency>
103102
<groupId>commons-codec</groupId>
104103
<artifactId>commons-codec</artifactId>
105-
<version>1.11</version>
104+
<version>1.12</version>
106105
<scope>compile</scope>
107106
</dependency>
108107

109108
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
110109
<dependency>
111110
<groupId>org.slf4j</groupId>
112111
<artifactId>slf4j-simple</artifactId>
113-
<version>1.7.25</version>
112+
<version>1.7.26</version>
114113
<scope>test</scope>
115114
</dependency>
116115
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
117116
<dependency>
118117
<groupId>org.slf4j</groupId>
119118
<artifactId>slf4j-api</artifactId>
120-
<version>1.7.25</version>
119+
<version>1.7.26</version>
121120
<scope>compile</scope>
122121
</dependency>
123122
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->

src/main/java/com/splunk/kafka/connect/SplunkSinkConnectorConfig.java

+15-15
Original file line numberDiff line numberDiff line change
@@ -328,21 +328,21 @@ public String toString() {
328328
+ "ackPollThreads:" + ackPollThreads + ", "
329329
+ "maxHttpConnectionPerChannel:" + maxHttpConnPerChannel + ", "
330330
+ "totalHecChannels:" + totalHecChannels + ", "
331-
+ "enrichment: " + getString(ENRICHMENT_CONF) + ", "
332-
+ "maxBatchSize: " + maxBatchSize + ", "
333-
+ "numberOfThreads: " + numberOfThreads + ", "
334-
+ "lineBreaker: " + lineBreaker + ", "
335-
+ "maxOutstandingEvents: " + maxOutstandingEvents + ", "
336-
+ "maxRetries: " + maxRetries + ", "
337-
+ "useRecordTimestamp: " + useRecordTimestamp + ", "
338-
+ "hecEventFormatted" + hecEventFormatted + ", "
339-
+ "trackData: " + trackData + ","
340-
+ "headerSupport:" + headerSupport + ","
341-
+ "headerCustom:" + headerCustom + ","
342-
+ "headerIndex:" + headerIndex + ","
343-
+ "headerSource:" + headerSource + ","
344-
+ "headerSourcetype:" + headerSourcetype + ","
345-
+ "headerHost" + headerHost;
331+
+ "enrichment:" + getString(ENRICHMENT_CONF) + ", "
332+
+ "maxBatchSize:" + maxBatchSize + ", "
333+
+ "numberOfThreads:" + numberOfThreads + ", "
334+
+ "lineBreaker:" + lineBreaker + ", "
335+
+ "maxOutstandingEvents:" + maxOutstandingEvents + ", "
336+
+ "maxRetries:" + maxRetries + ", "
337+
+ "useRecordTimestamp:" + useRecordTimestamp + ", "
338+
+ "hecEventFormatted:" + hecEventFormatted + ", "
339+
+ "trackData:" + trackData + ", "
340+
+ "headerSupport:" + headerSupport + ", "
341+
+ "headerCustom:" + headerCustom + ", "
342+
+ "headerIndex:" + headerIndex + ", "
343+
+ "headerSource:" + headerSource + ", "
344+
+ "headerSourcetype:" + headerSourcetype + ", "
345+
+ "headerHost:" + headerHost;
346346
}
347347

348348
private static String[] split(String data, String sep) {

0 commit comments

Comments
 (0)