Where can I find the XML schema and/or documentation for Eclipse target definition files (*.target)?
Asked
Active
Viewed 1,007 times
3
-
Any clues?Not finding any where..Waiting for answer. – Chandrayya G K Aug 12 '14 at 10:49
2 Answers
1
May be this schema might fit the target files created for an RCP platform.
(source: modumind.com)
Part of that schema file is visible in the Eclipse help page.

Glorfindel
- 21,988
- 13
- 81
- 109

VonC
- 1,262,500
- 529
- 4,410
- 5,250
-
Quote from the help page: "The file format is not API and subject to change between releases." Oh, well. – JesperE May 14 '10 at 07:29
-
That schema defines the extension point used to contribute target definitions. I can't see any definition on the contents of the *.target file itself. – JesperE May 14 '10 at 07:31
-
-
0
There is no schema or documentation defining the structure of a target definition file (.target). This is because the file structure is not intended to be API (it may change between release).
The structure has changed several times already. The code used to serialize/deserialize the file can be found in the following classes:
org.eclipse.pde.internal.core.target.TargetDefinitionPersistenceHelper
org.eclipse.pde.internal.core.target.TargetPersistence38Helper
org.eclipse.pde.internal.core.target.TargetPersistence36Helper
org.eclipse.pde.internal.core.target.TargetPersistence35Helper
org.eclipse.pde.internal.core.target.TargetPersistence34Helper

CWindatt
- 124
- 8