I am currently using spring boot 2 and junit 5. I want to make use of spring-kafka-test for testing, however the version of spring-kafka that I use is 2.1.8.RELEASE. With this I believe its not possible to use EmbeddedKafkaBroker
since that is something that came in 2.2.x.
The kafka-client that I use is 1.1.0. I looked at the compatibility matrix as mentioned in https://spring.io/projects/spring-kafka it seems its not going to work with client 1.1.0, just wondering if its possible to update just the spring-kafka-test to 2.2.3.RELEASE to use EmbeddedKafkaBroker
with Junit 5 while still using old kafka-client 1.1.0.
Has anyone tried something like that?