Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
Unknown
Description
Given the following integration route.
camel export --gav=com.mycompany:app:1.0 --dir=test --runtime=quarkus Timer2log.java
There is no camel-quarkus-direct component in the generated pom.xml
import org.apache.camel.builder.RouteBuilder; public class Timer2log extends RouteBuilder { @Override public void configure() throws Exception { rest() .post("/message") .id("rest") .to("direct:foo"); from("direct:foo") .log("hello"); } }
I noticed it's related to the rest component. Replace it with timer then the export command adds the camel-quarkus-direct dependency to the pom.xml
Attachments
Issue Links
- relates to
-
CAMEL-21045 camel-jbang - Export to quarkus will startup quarkus and hang JVM
- Resolved