jamesnetherton commented on issue #2612:
URL: https://github.com/apache/camel-quarkus/issues/2612#issuecomment-843190806


   The super lazy way...
   
   ```bash
   #!/bin/bash
   
   CLASSPATH=""
   
   for FILE in $(find target/quarkus-app -type f); do
     CLASSPATH=${CLASSPATH}:${FILE};
   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]


Reply via email to