I have a huge eclipse-rcp project "A" with many RCP-plugins. All these are being manifest-first built by tycho. In a separate project "B" I have some OSGi bundles.
I need to add bundles from B as dependencies to some plugins in A. When I add B bundles in A-plugin's MANIFEST.MF ("Require-Bundle: B.bundle1"), tycho does not find B.bundle1 ("Unable to satisfy dependency from A.plugin 1.0.0 to bundle B.bundle1 0.0.0").
I know, that I can configure tycho to use pom dependencies (consider and add B.bundle1 as maven dependency). Tycho can build project A now, but it ignores all manifests in A plugins and generates new ones. It looks like project A is now considered being pom-first.
How can I add OSGi bundles to my plugins, keeping plugins's build manifest-first?