문제

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

도움이 되었습니까?

해결책

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.

다른 팁

Eclipse PDE development has parallels to embedded systems programming where you do development on a PC, but deploy your application to a remote device.

With Eclipse PDE, you develop in a plugin to an Eclipse instance. The plugin could be deployed to the instance you're working in, but it can also be configured to deploy to any other Eclipse instance. This is configured from Preferences -> Plug-in Development -> Target Platform.

See also http://rcpquickstart.wordpress.com/2008/04/21/why-create-a-custom-target-platform/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top