Closed vladimirsvicevicsrb closed 9 months ago
So long as the service.name
defined in the pom maven-surefire-plugin
is set to {project.name}
, this will resolve as kafka-idempotent-consumer
:
https://github.com/lydtechconsulting/kafka-idempotent-consumer/blob/main/pom.xml#L165
This then correlates with the command in the ReadMe to build the docker image:
docker build -t ct/kafka-idempotent-consumer:latest .
So when you run the component tests, via:
mvn test -Pcomponent
...it looks for the ct/kafka-idempotent-consumer
image
So I am not sure why your stack trace is showing ct/app
.
As part of Blog post Kafka Idempotent Consumer & Transactional Outbox I wanted to run component ITs provided in the source code
But after starting it locally, I am getting this kind of exception:
I am nost sure whether that issue could be related to
Macbook M1 apple silicon
?Thanks!