Hello,
With the class rule EmbeddedKafkaRule this is possible to specify the port like that:
public static EmbeddedKafkaRule embeddedKafka = new EmbeddedKafkaRule(1, true, "topic").kafkaPorts(9092);
How can I achieve the same with the annotation ? (I use Junit 5)
@EmbeddedKafka(controlledShutdown = true, topics = {"topic"})