roirodriguez
roirodriguez

Reputation: 1740

Missing org.eclipse.ui.workbench plugin

I'm developing an Eclipse plugin... I need to make it dependant on org.eclipse.ui.workbench (i see this dependency in some sample plugins i've got imported, and works well), however if i press "add" under the "Dependencies" tab on my plugin.xml editor, it finds:

org.eclipse.ui.workbench.compatibility.source org.eclipse.ui.workbench.source org.eclipse.ui.workbench.texteditor org.eclipse.ui.workbench.texteditor.source

But there's no org.eclipse.ui.workbench plugin at all... As i said above, i've got sample plugins correctly working with that dependency. How do i fix this?

Upvotes: 0

Views: 3226

Answers (1)

Paul Webster
Paul Webster

Reputation: 10654

Depend on org.eclipse.ui, which is the main workbench plugin that exports API and schema for extension points. No one is supposed to directly depend on org.eclipse.ui.workbench, you get it for free when using org.eclipse.ui.

Upvotes: 2

Related Questions