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"

(Scout 3.10)
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
Line 1: Line 1:
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]].
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
In order to create your own target definition file, you need to choose the necessary scout [[Scout/Updatesites | updatesites]] and [[Scout/Features | features]].
+
 
+
== Target file Examples ==
+
Some common examples are shown here:
+
 
+
=== Scout 3.10 ===
+
 
+
{{note|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>
+

Latest revision as of 06:26, 19 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top