lburgazzoli opened a new issue #499: Filter out beans from CDI from build time 
discovery
URL: https://github.com/apache/camel-quarkus/issues/499
 
 
   If i.e. a component is defined using CDI, like:
   
   ```java
   @Singleton
   public class CamelComponents {
       @Singleton
       @Named("direct")
       @Produces
       DirectComponent directComponent() {
           DirectComponent component = new DirectComponent();
           component.setTimeout(1234);
   
           return component;
       }
   }
   ```
   
   we should exclude it from build time auto discovery 
   

----------------------------------------------------------------
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


With regards,
Apache Git Services

Reply via email to