Skip to content

Commit 2959001

Browse files
committed
Update docs, spring boot version
1 parent e57420b commit 2959001

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Integration Test Spring Kafka with Embedded Kafka Consumer and Producer
44

5-
Sample project to show how to implement Integration Test with Spring Kafka and EmbeddedKafka.
5+
Sample project to show how to implement Integration Test in Spring Boot. With Spring Kafka and EmbeddedKafka.
66

7-
Example with Spring Kafka 2.4.2
7+
Example with Spring Boot 2.2.6 (Spring Kafka 2.4.5)
8+
9+
Official Example : [github.com/spring-projects/spring-kafka](https://github.com/spring-projects/spring-kafka)

pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.2.4.RELEASE</version>
8+
<version>2.2.6.RELEASE</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>
@@ -42,7 +42,6 @@
4242
<dependency>
4343
<groupId>org.springframework.kafka</groupId>
4444
<artifactId>spring-kafka</artifactId>
45-
<version>${spring-kafka.version}</version>
4645
</dependency>
4746

4847
<!-- Test -->
@@ -73,7 +72,6 @@
7372
<dependency>
7473
<groupId>org.springframework.kafka</groupId>
7574
<artifactId>spring-kafka-test</artifactId>
76-
<version>${spring-kafka.version}</version>
7775
<scope>test</scope>
7876
</dependency>
7977
</dependencies>

0 commit comments

Comments
 (0)