set

Description

A job which sets properties in other jobs when it executes.

Properties

NameDescriptionRequired
name A name, can be any text. No.

Elements

Any type

Required: No.

Any type. In addition to the attributes which are the properties of the type (documented with each type) a name attribute is required.

Example

This will set the text property of greeting to "hello".


 <sequential>
   <set>
     <string name="greeting.text" value="hello"/>
   </set>
   <echo id="greeting"/>
 </sequential>
 


(c) Rob Gordon 2005