vote up 1 vote down star

In Eclipse (3.3) if you start the New Plugin Project Wizard, the first page has a Target Platform, where you can target a version of eclipse.

Is this information saved/used and if so where?

Also if you then create an extension the plugin.xml is created, and at the top is (for me) :

<?eclipse version="3.2"?>

Where did this version come from?, does it depend on the extension you just extended? Will it be updated/changed?

flag

50% accept rate

2 Answers

vote up 1 vote down

Some elements of answer:

From "Whats your Target?" (for Galileo 3.5, but some applies to 3.3)

alt text

The IDE is your workbench and the Target Platform defines your Product you’re creating using the IDE.

  • What do you need if you have to make your product run outside Eclipse ? (Equinox ? Logging ? Riena ? RAP ? Jetty ? )
  • On which platforms (OS) should my product run ? (Windows ? OSX ? )

In recent eclipse, the following are including in a Target definition:

  • the location of the target,
  • the list of plug-ins constituting the target (Require-bundle in the MANIFEST.MF),
  • the target environment (in plugin.xml)
  • launching argument

But the main information of a Target platform remain the list of plugins needed.

From "PDE Does Plugin":

In order for PDE to provide a development environment that is identical to the runtime environment in which the plug-in will be later deployed, one needs to specify the Target Platform.
Target platform refers to the set of plug-ins with which the plug-in being developed will be deployed. At runtime, most plug-ins require other plug-ins to be on their class path in order to run properly

alt text

From RCP FAQ:

PDE currently supports two versions back for plug-in development. That is, with Eclipse 3.2 you can develop 3.0 plugins and launch 3.0 systems, but not 2.1 or earlier.

link|flag
vote up 0 vote down

The plugin 3.2 version is there because there were changes prior to 3.2 which would make it incompatible. However, it's remained the same from 3.2 onwards.

You'll also find that it records the information in the MANIFEST.MF in the Required Execution Environment and (for OSGi apps) puts specific versions in the org.osgi.framework or org.eclipse.core dependencies.

So there's a subtle mapping between Eclipse version and what version numbers are put in these entires; it's not just a 1-1 correspondence between the two.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.