I am working on developing osgi bundles and deploying it to adobe AEM.
I have two projects, both are OSGI bundles
- Main project
- toolkit project
I have added the toolkit project as a maven dependency in the main project pom and here is what I am trying to achieve:
When I deploy the main project, the bundle is deployed to AEM using the maven plugin, I want to deploy the dependency bundle (toolkit) also when the main project is deployed.
Is there a way to do this?
Thanks!