« Return to Thread: PDE build does not include correct versions of required plugins

PDE build does not include correct versions of required plugins

by kennywest :: Rate this Message:

Reply to Author | View in Thread

I am using Eclipse 3.3
I have the following plug-in structure:
plugin/A
plugin/B
plugin/C

A is actually a product. The product configuration is based on plug-ins. The A.product file lists all required plug-ins for A, B and C.

B is using a custom version of the databinding framework (most recent SVN trunk). So, B lists the following required bundles in its MANIFEST.MF:
...
org.eclipse.core.databinding;bundle-version="1.3.0",
org.eclipse.core.databinding.beans;bundle-version="1.3.0",
org.eclipse.jface.databinding;bundle-version="1.3.0"
...

Running the product from Eclipse IDE resolves the correct databinding framework. When building the application using PDE build + Maven, the databinding plug-ins that ship with 3.3 are copied to the .zip file. If I remove the original versions from eclipse/plugin directory, of course, my versions are copied to the .zip file.
This is rather annoying, since I am not the only developer on this project :)

How can I tell PDE build to copy a specific version of the databinding plug-ins to the resulting .zip file?

Thanks.

 « Return to Thread: PDE build does not include correct versions of required plugins