The target Jar was misspelled in the README.md files of the directories processor-samples/reactive-processor-kafka and processor-samples/reactive-processor-rabbit.
So I corrected the processor-samples/reactive-processor-kafka/README.md instruction from java -jar target/reactive-processor-0.0.1-SNAPSHOT-kafka.jar to java -jar target/reactive-processor-kafka-0.0.1-SNAPSHOT.jar and made a corresponding correction to processor-samples/reactive-processor-rabbit/README.md, too.
Since there are already distinct directories for the Kafka and RabbitMQ binding examples (i.e. processor-samples/reactive-processor-kafka and processor-samples/reactive-processor-rabbit) I removed the docker-compose-rabbit.yml file from the Kafka binding example directory processor-samples/reactive-processor-kafka and updated it's README.md accordingly.
@dduehr Thanks for the cleanup. Merged the PR upstream. We are in the process of revamping the sample repository. We may put this sample under a new branch.
The target Jar was misspelled in the
README.md
files of the directoriesprocessor-samples/reactive-processor-kafka
andprocessor-samples/reactive-processor-rabbit
.So I corrected the
processor-samples/reactive-processor-kafka/README.md
instruction fromjava -jar target/reactive-processor-0.0.1-SNAPSHOT-kafka.jar
tojava -jar target/reactive-processor-kafka-0.0.1-SNAPSHOT.jar
and made a corresponding correction toprocessor-samples/reactive-processor-rabbit/README.md
, too.Since there are already distinct directories for the Kafka and RabbitMQ binding examples (i.e.
processor-samples/reactive-processor-kafka
andprocessor-samples/reactive-processor-rabbit
) I removed thedocker-compose-rabbit.yml
file from the Kafka binding example directoryprocessor-samples/reactive-processor-kafka
and updated it'sREADME.md
accordingly.