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"

(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...)
 
(Target file Examples)
Line 6: Line 6:
 
Some common examples are shown here:
 
Some common examples are shown here:
  
'''Scout RT with Eclipse Kepler without RAP'''
+
 
 +
=== Scout 3.10 ===
 +
'''Scout RT with Eclipse Luna'''
  
 
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
Line 14: Line 16:
 
  <location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
 
  <location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
 
  <unit id="org.eclipse.scout.rt.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/kepler"/>
+
  <repository location="http://download.eclipse.org/releases/Luna"/>
 
  </location>
 
  </location>
 
  </locations>
 
  </locations>
 
  </target>
 
  </target>
  
'''Scout RT and Testing with Eclipse Kepler without RAP with fixed Version'''
+
=== Scout 3.9 ===
 +
 
 +
'''Scout RT with Eclipse Kepler without RAP'''
  
 
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
  <?pde version="3.8"?>
 
  <?pde version="3.8"?>
  <target name="swtOnly" sequenceNumber="3">
+
  <target name="swtOnly" sequenceNumber="0">
 
  <locations>
 
  <locations>
  <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
+
  <location includeAllPlatforms="false" includeConfigurePhase="true" 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="0.0.0"/>
<unit id="org.eclipse.scout.rt.source.feature.group" version="3.9.0.20130605-1344"/>
+
 
  <repository location="http://download.eclipse.org/releases/kepler"/>
 
  <repository location="http://download.eclipse.org/releases/kepler"/>
 
  </location>
 
  </location>
Line 33: Line 36:
 
  </target>
 
  </target>
  
 
+
'''Scout RT and Testing with Eclipse Kepler without RAP with fixed Version'''
'''Scout RT and Testing with Eclipse Staging without RAP'''
+
  
 
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
Line 41: Line 43:
 
  <locations>
 
  <locations>
 
  <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
 
  <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.testing.source.feature.group" version="3.9.0.20130605-1344"/>
  <unit id="org.eclipse.scout.rt.source.feature.group" version="0.0.0"/>
+
  <unit id="org.eclipse.scout.rt.source.feature.group" version="3.9.0.20130605-1344"/>
  <repository location="http://download.eclipse.org/releases/staging"/>
+
  <repository location="http://download.eclipse.org/releases/kepler"/>
 
  </location>
 
  </location>
 
  </locations>
 
  </locations>
 
  </target>
 
  </target>

Revision as of 06:02, 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

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