bartoszpop commented on PR #17035: URL: https://github.com/apache/camel/pull/17035#issuecomment-2633284013
Hi @davsclaus, thank you for your feedback. We utilize this mechanism to inject predefined bean and AggregationStrategy classes to JBang runtime, meaning that we pass the parameter `--dep=com.example:custom-catalog:1.0.0` and is contains `camel-main-known-dependencies.properties` with a list of custom classes pointing to custom jars, e.g. ``` org.example.some.BeanClass=com.example:some-jar:1.0.0 org.example.some.AggregationStrategyClass=com.example:some-jar:1.0.0 org.example.other.BeanClass=com.example:other-jar:1.0.0 ``` Instead of having separate entries for each class it would be reasonable to have them merged, because all classes in the same jar will share the same package, e.g. ``` org.example.some=com.example:some-jar:1.0.0 org.example.other=com.example:other-jar:1.0.0 ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
