tags:

views:

23

answers:

1

Hello SO guys,

In my build.xml, below works fine :-

<path id="build.classpath">
        <fileset dir="lib [myUtils]" includes="*.jar" />
</path>

if lib [myUtils] is of folder type, but don't works, if it's of Linked Folder type.


Also, I found this when googled :-

https://bugs.eclipse.org/bugs/show_bug.cgi?id=265960

https://bugs.eclipse.org/bugs/show_bug.cgi?id=43081

https://bugs.eclipse.org/bugs/show_bug.cgi?id=265960


Is there any trick to achieve this, without copying the dependencies in work folder??

A: 

Note that ant should work outside of eclipse as well. So you can't reply in IDE abstractions. You can use symbolic links (if your OS supports them).

If not, you can use the FileSync plugin to synchronize eclipse project folders with external folders. Or you can simply use the <copy> ant task.

Bozho
but, I am working on MS Win XP. Is there any hack available for that.
rits
no, there isn't anything clean. Check my update for some sort of a workaround
Bozho