Skip to content

Commit 5587aa1

Browse files
committed
some code clean up
1 parent 6c2cb82 commit 5587aa1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/kafka/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
plugins {
10-
id 'java-library'
10+
id 'java-library'
1111
id 'distribution'
1212
}
1313

@@ -29,9 +29,9 @@ distributions {
2929
}
3030

3131
dependencies {
32-
implementation 'com.googlecode.json-simple:json-simple:1.1'
33-
implementation 'org.apache.kafka:kafka-clients:3.5.1'
34-
32+
implementation 'com.google.code.gson:gson:2.10.1'
33+
implementation 'org.apache.kafka:kafka-clients:3.5.1'
34+
3535
compileOnly files('../../lib/target-adapter-sdk.jar')
3636

3737
// jars for logging
@@ -59,7 +59,7 @@ jar {
5959
"Specification-Title": productName,
6060
"Specification-Version": version,
6161
"Specification-Vendor": vendor,
62-
'Main-Class': 'com.softwareag.adabas.target.Kafka',
62+
'Main-Class': 'com.softwareag.adabas.target.Kafka',
6363
"Bundle-Version": version,
6464
'Build-JDK': System.getProperty('java.version'),
6565
"Build-Date":new Date().format("yyyy-MM-dd' 'HH:mm:ss"),

examples/kafka/src/main/java/com/softwareag/adabas/target/Kafka.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@ private ArrayList<ProducerRecord<String, String>> getList() {
195195
}
196196
return _list;
197197
}
198-
}
198+
}

0 commit comments

Comments
 (0)