Hi,
I am going to add kafka streams dependency code in my project. How to add this?
Tell me the kafka streams maven dependency code which can be added to Maven pom.xml file of the project?
Thanks
Hi,
Here is the code of kafka stream maven dependency:
<dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-streams</artifactId> <version>3.6.1</version> </dependency>
Add above in your projects pom file.
Thanks
Ads