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

Difference between revisions of "Scout/Targets"

(Target file Examples)
(Scout 3.10)
Line 7: Line 7:
  
 
=== Scout 3.10 ===
 
=== Scout 3.10 ===
 +
 +
{{note|TODO| Scout RT with Eclipse 3.8}}
 +
 
'''Scout RT with Eclipse Luna'''
 
'''Scout RT with Eclipse Luna'''
  

Revision as of 09:35, 19 November 2013

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

Note.png
TODO
Scout RT with Eclipse 3.8


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>

Back to the top