Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse PDE: What is a "target platform"?

When you work with Eclipse PDE (Plug-in development environment), there is the term "target platform." What does that mean exactly?

like image 269
Aaron Digulla Avatar asked Dec 30 '10 12:12

Aaron Digulla


People also ask

What is target platform in Eclipse?

The target platform specifies the set of bundles used to compile and build against within the Eclipse PDE (plugin development environment). The default target platform is Eclipse itself, but the target platform can be set to any desired set of bundles.

What is target platform?

What Does Target Platform Mean? “Target platform” is a generally used term in IT to discuss a platform of focus. A target platform can refer to the platform that something is being built for, a platform that is desirable for use, or simply a platform that a particular technology is focusing on.

What is plugin development in eclipse?

The Eclipse PDE™ (Plug-in Development Environment) provides tools to create, develop, test, debug, build and deploy Eclipse plug-ins, fragments, features, update sites and RCP products.


1 Answers

The target platform specifies the Eclipse configuration that you are developing your plugins for. This is defined by the set of available plugins and features. It defaults to mirroring the configuration of the Eclipse instance that you are running, but in most cases you will want to change it to something more specific.

For instance, you may be running Eclipse 3.6, but developing plugins for Eclipse 3.5, or you may be developing a plugin on top of WTP, but you don't need WTP functionality in your development eclipse instance.

like image 111
Konstantin Komissarchik Avatar answered Sep 21 '22 23:09

Konstantin Komissarchik