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 "Tigerstripe Buckminster Integration Tutorial"

(CQUERY)
(CQUERY)
Line 15: Line 15:
 
<pre>
 
<pre>
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
<cq:componentQuery xmlns:cq="http://www.eclipse.org/buckminster/CQuery-1.0" resourceMap="http://www.eclipse.org/tigerstripe/queries/tutorial.rmap">
+
<cq:componentQuery  
     <cq:rootRequest name="CoreReferencedProject" componentType="tigerstripe" versionDesignator="[1.0.0,1.0.0]" versionType="OSGi"/>
+
  xmlns:cq="http://www.eclipse.org/buckminster/CQuery-1.0"  
 +
  resourceMap="http://www.eclipse.org/tigerstripe/queries/tutorial.rmap">
 +
     <cq:rootRequest  
 +
      name="CoreReferencedProject"  
 +
      componentType="tigerstripe" versionType="OSGi"/>
 
</cq:componentQuery>
 
</cq:componentQuery>
 
</pre>
 
</pre>

Revision as of 09:16, 22 October 2008

< To: Tigerstripe_Tutorials

Prerequisites

  • The tutorial will use CVS for the example projects source repository.
  • This tutorial will assume general knowledge and installation of both the Tigerstripe Workbench [1] and the Buckminster [2] Eclipse plug-ins.

Materialization

This section will describe the Tigerstripe workspace materialization process. This description will include an overview of required components, and a walk-through using sample configuration files and projects available from the Tigerstripe CVS repository.

Components

CQUERY

A Component Query (CQUERY) is the file based input required by Buckminster to initiate the materialization process. For more information about the CQUERY see Buckminster Component Query.

<?xml version="1.0" encoding="UTF-8"?>
<cq:componentQuery 
  xmlns:cq="http://www.eclipse.org/buckminster/CQuery-1.0" 
  resourceMap="http://www.eclipse.org/tigerstripe/queries/tutorial.rmap">
    <cq:rootRequest 
      name="CoreReferencedProject" 
      componentType="tigerstripe" versionType="OSGi"/>
</cq:componentQuery>

RMAP

CSPEC (Optional, but required for version support in Phase 1)

Sample Project Materialization

Back to the top