I have an own camel component/endpoint that I used successfully in many routes in a Spring Boot App. I am trying to migrate to camel quarkus and use the same routes in my application.
It's not possible to use this component/endpoint in my camel-quarkus aplication by simply adding the related dependency: quarkus is not able to discover this component/endpoint as does Spring Boot.
The obvious solution is to write a quarkus extension that uses this camel-component under the hood: quarkus extensions like jdbc, file, sql and so on are implemented using the corresponding camel-components.
If we take a look into the pom-xml of sql of its runtime module, we find that it's using the equivalent camel-sql component:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-sql</artifactId>
</dependency>
My problem is that quarkus still not discover the component/endpoint even if building by project (I am using eclipse), quarkus shows that it has installed my extension. I searched for a long time in the internet but didn't find any helpfull source.