gus-maurizio commented on issue #2612:
URL: https://github.com/apache/camel-quarkus/issues/2612#issuecomment-843225090
Brilliant! it works. Thanks James.
If I may suggest a little change to make the CLASSPATH shorter:
```
CLASSPATH=""
for DIR in $(find target/quarkus-app -type d -mindepth 1); do
CLASSPATH="${DIR}/*:${CLASSPATH}";
done
java -cp ${CLASSPATH} io.quarkus.bootstrap.runner.QuarkusEntryPoint
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]