path task
Description
This task is similar to path task provided by ant but add an override attribute with these values:
- true: new definition will take precedence over preceding one if any
 - false: new definition will be discarded if any definition already exists
 - append: new definition will be added to the existing one if any
 - prepend: new definition will be added at the beginning of the existing one if any
 
Arguments
| Parameter name | Description | Mandatory | 
|---|---|---|
| pathid | used to give a name to the path | true | 
| overwrite | specify if easyant should overwrite the path (Possible values are true/false/append/prepend) | 
Nested Elements
TO BE DOCUMENTED!Examples
<ea:path pathid="compile.main.classpath" overwrite="true">Here we overwrite the path "compile.main.classpath"
<fileset dir="foobar"/>
</ea:path>