Example

Single symlink

<symlink target="/path/to/original/file" link="/where/to/symlink" />

Using filesets

<symlink link="/where/to/symlink">
	<fileset dir="/some/directory">
		<include name="*" />
	</fileset>
</symlink>

In the fileset example, assuming the contents of "/some/directory" were:

  • Somedir

  • somefile

Then the contents of "/where/to/symlink" would be:

  • Somedir -> /some/directory/Somedir

  • somefile -> /some/directory/somefile