Is it possible to include a file from a parent directory, seen from the defined dir?
If I define a fileset with a given dir, lets say /home/user/workspace/src
, is ti possible to include a file e.g /home/user/anotherworkspace/src/MyJavaClass.java
?
Here the complete example, where the first include esist in the workspace:
<fileset id="myfileset" dir="/home/user/workspace/src">
<include name="util/MyUtilClass.java"/>
<include name="/home/user/anotherworkspace/src/MyJavaClass.java"/>
</fileset>
How to handle the second include?