Skip to content

Commit

Permalink
fixes build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadileepkolli committed May 12, 2023
1 parent 03b9f8e commit 157ef65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 19 deletions.
14 changes: 5 additions & 9 deletions kafka-avro/spring-boot-kafka-avro-producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
Expand All @@ -62,11 +58,6 @@
<scope>runtime</scope>
<optional>true</optional>
</dependency>-->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand All @@ -89,6 +80,11 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka-test</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,7 @@

import java.time.Duration;

@SpringBootTest(
properties = {
"spring.kafka.consumer.key-deserializer=org.apache.kafka.common.serialization.StringDeserializer",
"spring.kafka.consumer.value-deserializer=io.confluent.kafka.serializers.KafkaAvroDeserializer",
"spring.kafka.consumer.group-id=group-1"
})
@SpringBootTest
@AutoConfigureMockMvc
@Import(AvroKafkaListener.class)
@ExtendWith(OutputCaptureExtension.class)
Expand Down

This file was deleted.

0 comments on commit 157ef65

Please sign in to comment.