It probably would be much nicer just be let end-users to specify a Kafka version like ext['kafka.version'] = '2.8.1' and everything else comes to us from Spring Boot management.
Thanks
P.S. I would PR the fix, but I don't know how specify a test classifier in Gradle configuration 😄
The text was updated successfully, but these errors were encountered:
The current Apache Kafka management is like this:
There are two more dependencies which would really use for testing in Spring for Apache Kafka when our
@EmbeddedKafka
is involved:Pay attention to that
<classifier>test</classifier>
.They come as transitive dependencies from
spring-kafka-test
but if we need to override an Apache Kafka version for some reason, we also have to add those two dependencies explicitly: https://docs.spring.io/spring-kafka/docs/2.8.1-SNAPSHOT/reference/html/#update-deps.It probably would be much nicer just be let end-users to specify a Kafka version like
ext['kafka.version'] = '2.8.1'
and everything else comes to us from Spring Boot management.Thanks
P.S. I would PR the fix, but I don't know how specify a😄
test
classifier in Gradle configurationThe text was updated successfully, but these errors were encountered: