Andrei Petrenko
Andrei Petrenko

Reputation: 3950

Eclipse OSGi run configuration

Is there any way to add OSGi Run configuration to Eclipse Indigo if there's no such section in a templates panel on the left of "Run Configurations" dialog box?

Upvotes: 3

Views: 1994

Answers (1)

palacsint
palacsint

Reputation: 28855

Download the Eclipse IDE for Java EE Developers package. It looks to me that PDE is required for the OSGi Framework launch configuration which is missing from the Eclipse IDE for Java Developers package.

PDE UI also provides comprehensive OSGi tooling, which makes it an ideal environment for component programming, not just Eclipse plug-in development.

...

Launchers - test and debug Eclipse applications and OSGi bundles.

(From http://www.eclipse.org/pde/pde-ui/)

Take a look at this answer too. Installing the PDE plugin through Install New Software also could be a solution.

Upvotes: 5

Related Questions