The Path data type can be used to represent path structures. In many cases the path type will be used for nested <classpaentry> tags. E.g.
<path id="project.class.path"> <pathelement dir="lib/"/> <pathelement dir="ext/"/> </path> <target name="blah"> <taskdef name="mytask" path="MyApp\CustomTask\MyTask"> <classpath refid="project.class.path"/> </taskdef> </target>
Table D.6: Attributes for <paentry>
tag
Name | Type | Description | Default | Required |
---|---|---|---|---|
dir | String | Specific path to directory | n/a | No |
path | String | A path (which contains multiple locations separated by path.separator) to add. | n/a | No |
The <paentry>
tag supports nested
<fileset>
and <dirset>
tags.