Hi, I have an issue with bundle startup. I got 2 bundles, A and B. A imports packages of B. So during deployment of a bundle in the container, it does the following:
A resolved B resolved B started <— why ? shouldn’t A be started first as B depends on A? A started This creates problems for me as some services on A do register classes on a separate bundle C. So A services, when activated, expect to find those registrations on C but can’t. Is this a common issue? Is there a solution? I am using maven to deploy my bundles. Thanks, Kostas

