Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse OSGi run configuration

Tags:

eclipse

osgi

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?

like image 809
Andrei Petrenko Avatar asked Jun 30 '26 11:06

Andrei Petrenko


1 Answers

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.

like image 140
palacsint Avatar answered Jul 03 '26 02:07

palacsint