You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by GitBox <gi...@apache.org> on 2018/09/11 21:34:14 UTC

[GitHub] nicolaferraro opened a new issue #30: Manage dependencies

nicolaferraro opened a new issue #30: Manage dependencies
URL: https://github.com/apache/camel-k/issues/30
 
 
   When the user executes "kamel run Source.java", he might be using some components not available in camel-core.
   
   In this case, the "kamel" script should create the resource as usual (do not put too much logic into the client), while the operator in the "Initialize" action should scan the source file to find declaration of external maven dependencies.
   
    We can use a simplified way to declare dependencies, such as declaring them in a comment, e.g.
   
   ```
    // k-include: camel-mail
   ```
   
   This way we let the user specify everything in a single file. We can switch to something better later (best if recognized by the tooling).
   
   The initializer will add "org.apache.camel:camel-mail" to the list of dependencies in the CR (custom resource).
   
    We should enable the following ways to include dependencies:
   - Comment in the source file
   - `kamel run --dependency camel-mail Source.java`
   - Putting it direcly in spec->dependency->items by editing the custom resource
   
   We should also allow to disable the auto-discovery via a flag e.g. in "spec->dependencies->autoDiscovery", controlled by a "kamel --auto-dependencies false" client flag.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services