Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » plugin cannot access to nested dependency
plugin cannot access to nested dependency [message #1052543] Tue, 30 April 2013 08:09
a bc is currently offline a bcFriend
Messages: 6
Registered: February 2012
Junior Member

I made a set of plugins. here's my plugin's dependency:

plugin "A"

Require-Bundle: org.eclipse.ui;visibility:=reexport,
org.eclipse.core.runtime;visibility:=reexport,
org.eclipse.ui.console;visibility:=reexport

plugin "B"

Require-Bundle: A;visibility:=reexport

plugin "C"

Require-Bundle: B

plugin "C" have to accss both "A" and "B". and "B" has a 'Reexport' dependency to "A". So, as I think, If plugin "C" has a dependency to "B", it should have dependency to "A" automatically.

But if I do so, plugin "C" cannot access to "A" neither "B". (It says "restricted access".)

a workaround is, let "C" have dependencies to "A" and "B" explicitly. like this one:

Require-Bundle: A,
B

I'm working with eclipse 3.7 RCP developer edtion(Indigo SR2).
Previous Topic:Get an Iproject from Export Wizard
Next Topic:Can I process the manifest file of a bundle project in the workspace?
Goto Forum:
  


Current Time: Tue Apr 23 07:02:05 GMT 2024

Powered by FUDForum. Page generated in 0.02597 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top