Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Scout/Targets

< Scout
Revision as of 05:40, 19 June 2013 by Judith.gull.gmail.com (Talk | contribs) (New page: 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 cre...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 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>


Scout RT and Testing with Eclipse Staging without RAP

<?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="0.0.0"/>
<unit id="org.eclipse.scout.rt.source.feature.group" version="0.0.0"/>
<repository location="http://download.eclipse.org/releases/staging"/>
</location>
</locations>
</target>

Back to the top