[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.rcp] Re: Cyclic Dependency
|
Hi
I have created Two plugins as per the site you sent to me.
plugin A manifest File
----------------------
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: PluginA Plug-in
Bundle-SymbolicName: pluginA; singleton:=true
Bundle-Version: 1.0.0
Bundle-Activator: plugina.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
pluginB
Eclipse-LazyStart: true
Eclipse-RegisterBuddy: pluginB
Export-Package: plugina
plugin B manifest File
-----------------------
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: PluginB Plug-in
Bundle-SymbolicName: pluginB; singleton:=true
Bundle-Version: 1.0.0
Bundle-Activator: pluginb.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime
Eclipse-LazyStart: true
Eclipse-BuddyPolicy: registered
Export-Package: pluginb,
pluginb.views
I am able to access B detials in A. But not A details in B.
Please update me if i am wrong in doing this process.
Thanks in advance
Raaj