Scout/Targets
< Scout
To use a different target platform for compiling and running your scout plugins in your workspace, a target definition file can be created. See PDE/Target_Definitions.
In order to create your own target definition file, you need to choose the necessary scout updatesites and features.
Target file Examples
Some common examples are shown here:
Scout 3.10
Scout RT with Eclipse Luna
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?pde version="3.8"?> <target name="swtOnly" sequenceNumber="0"> <locations> <location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> <unit id="org.eclipse.scout.rt.source.feature.group" version="0.0.0"/> <repository location="http://download.eclipse.org/releases/Luna"/> </location> </locations> </target>
Scout 3.9
Scout RT with Eclipse Kepler without RAP
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?pde version="3.8"?> <target name="swtOnly" sequenceNumber="0"> <locations> <location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> <unit id="org.eclipse.scout.rt.source.feature.group" version="0.0.0"/> <repository location="http://download.eclipse.org/releases/kepler"/> </location> </locations> </target>
Scout RT and Testing with Eclipse Kepler without RAP with fixed Version
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?pde version="3.8"?> <target name="swtOnly" sequenceNumber="3"> <locations> <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit"> <unit id="org.eclipse.scout.rt.testing.source.feature.group" version="3.9.0.20130605-1344"/> <unit id="org.eclipse.scout.rt.source.feature.group" version="3.9.0.20130605-1344"/> <repository location="http://download.eclipse.org/releases/kepler"/> </location> </locations> </target>