jamesnetherton commented on issue #1564: URL: https://github.com/apache/camel-quarkus/issues/1564#issuecomment-768310828
Works fine for me in IntelliJ and from the command line. I can only assume that the app classpath in your IDE needs updating. Also, you don't really need class `MainApp`. In class `Main` you can simplify things and just do: ``` @QuarkusMain public class Main { public static void main(String... args) { Quarkus.run(CamelMainApplication.class, args); } } ``` Your `RouteBuilder` will be auto discovered. ---------------------------------------------------------------- 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: us...@infra.apache.org