Skip to content

Commit 47b62e6

Browse files
ayapjulie001Saheli Dey
authored andcommitted
Release version 2.3.1 (ing-bank#80)
Release version 2.3.1 Quick fix to disable confluent and kafka --------- Co-authored-by: Julie Ann Ayap <julie.ann.ayap@ing.com> Rebasing the commit
1 parent 25521b1 commit 47b62e6

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

Engine/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<app.root>../</app.root>
1616
</properties>
1717
<dependencies>
18-
<dependency>
18+
<!-- <dependency>
1919
<groupId>org.apache.kafka</groupId>
2020
<artifactId>kafka-clients</artifactId>
2121
<version>${kafka-clients.version}</version>
@@ -24,7 +24,7 @@
2424
<groupId>io.confluent</groupId>
2525
<artifactId>kafka-avro-serializer</artifactId>
2626
<version>${kafka-avro-serializer.version}</version>
27-
</dependency>
27+
</dependency> -->
2828
<dependency>
2929
<groupId>com.ing</groupId>
3030
<artifactId>ingenious-testdata-csv</artifactId>
@@ -332,10 +332,10 @@
332332
</dependency>
333333
</dependencies>
334334
<repositories>
335-
<repository>
335+
<!-- <repository>
336336
<id>confluent</id>
337337
<url>https://packages.confluent.io/maven/</url>
338-
</repository>
338+
</repository> -->
339339
</repositories>
340340
<build>
341341
<resources>

Engine/src/main/java/com/ing/engine/commands/browser/Command.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@
3535
import org.openqa.selenium.WebDriver;
3636
import org.openqa.selenium.WebElement;
3737

38+
/** Kafka Imports
3839
import org.apache.kafka.common.header.Header;
3940
import org.apache.avro.Schema;
4041
import org.apache.avro.generic.GenericRecord;
4142
import org.apache.kafka.clients.consumer.ConsumerRecord;
4243
import org.apache.kafka.clients.consumer.KafkaConsumer;
4344
import org.apache.kafka.clients.producer.KafkaProducer;
4445
import org.apache.kafka.clients.producer.ProducerRecord;
46+
*/
4547

4648
public class Command {
4749

@@ -142,6 +144,7 @@ public class Command {
142144
* *** Kafka Parameters ****
143145
*/
144146

147+
/** Kafka Parameters
145148
static public Map<String, List<Header>> kafkaHeaders = new HashMap<>();
146149
static public Map<String, String> kafkaProducerTopic = new HashMap<>();
147150
static public Map<String, String> kafkaConsumerTopic = new HashMap<>();
@@ -179,6 +182,7 @@ public class Command {
179182
static public Map<String, ConsumerRecord> kafkaConsumerRecord = new HashMap<>();
180183
static public Map<String, KafkaProducer> kafkaProducer = new HashMap<>();
181184
static public Map<String, KafkaConsumer> kafkaConsumer = new HashMap<>();
185+
*/
182186

183187
public Command(CommandControl cc) {
184188
Commander = cc;

Engine/src/main/java/com/ing/engine/commands/kafka/KafkaOperations.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/** Kafka Operations related commands
2+
13
package com.ing.engine.commands.kafka;
24
35
import com.fasterxml.jackson.core.JsonParser;
@@ -1121,3 +1123,5 @@ private static boolean isCompatible(JsonNode value, Schema schema) {
11211123
}
11221124
}
11231125
}
1126+
1127+
*/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# INGenious Playwright Studio - Test Automation for Everyone
22

33
[![Build INGenious Source Code](https://github.com/ing-bank/INGenious/actions/workflows/maven.yml/badge.svg)](https://github.com/ing-bank/INGenious/actions/workflows/maven.yml)
4-
![Static Badge](https://img.shields.io/badge/Version-2.3-%23FF6200)
4+
![Static Badge](https://img.shields.io/badge/Version-2.3.1-%23FF6200)
55

66
--------------------------------------------------------------------
77

Resources/Engine/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@
155155
</plugins>
156156
</build>
157157
<repositories>
158-
<repository>
158+
<!-- <repository>
159159
<id>confluent</id>
160160
<url>https://packages.confluent.io/maven/</url>
161-
</repository>
161+
</repository> -->
162162
</repositories>
163163
<pluginRepositories/>
164164
<dependencies>
@@ -189,7 +189,7 @@
189189

190190

191191

192-
<dependency>
192+
<!-- <dependency>
193193
<groupId>org.apache.kafka</groupId>
194194
<artifactId>kafka-clients</artifactId>
195195
<version>${kafka-clients.version}</version>
@@ -198,7 +198,7 @@
198198
<groupId>io.confluent</groupId>
199199
<artifactId>kafka-avro-serializer</artifactId>
200200
<version>${kafka-avro-serializer.version}</version>
201-
</dependency>
201+
</dependency> -->
202202
<dependency>
203203
<groupId>com.ing</groupId>
204204
<artifactId>ingenious-testdata-csv</artifactId>

0 commit comments

Comments
 (0)