I'm trying to bundle a bunch of Eclipse plug-ins into a feature. Currently I've got just one plug-in project which makes use of classes contained in package org.osgi.framework and org.tigris.subversion.javahl. Exporting the plug-in works fine.
Now I added another feature project and added the above plug-in to the feature's plug-ins. Then I let Eclipse compute the required plug-ins (org.eclipse.core.runtime, org.eclipse.osgi and org.tigris.subversion.clientadapter). The feature itself does not contain any Java code. It is just used to bundle plug-ins.
Exporting the feature fails with an error saying that org.tigris cannot be resolved for the import statement 'import org.tigris.subversion.javahl.SVNClient.'
I don't understand why the dependencies can be resolved when exporting the plug-in project, but cannot be resolved for the feature project.
Many thanks in advance!