I've created by first project for karaf (4.0.1). So far I've got the following:
- an application bundle built with the
maven-bundle-plugin
. There are going to be more... - a karaf feature created with the
karaf-maven-plugin
. - a karaf-assembly created with the same plugin
So I'm ready to deliver to the customer - but I'm stuck over the development process. This question answered almost all my remaining questions save one:
After having built my project by running maven install
I think I should be able to to get my feature running on a local karaf instance using something like the command feature:install
.
I can install my application bundle from local maven by using bundle:install
but then I'm down to managing dependencies myself.
Really can't figure out while bundle:install
works against my local maven repository and feature:install
doesn't.