What means "ant -d" ?
Jan
________________________________
Von: Farhdine Boutzakhti [mailto:[EMAIL PROTECTED]
Gesendet: Donnerstag, 25. Januar 2007 17:58
An: Ant Users List
Betreff: Problem with classpath of taskdef
Hi all !
I have a problem of classpath when I use a created task.
See the code:
<path id="libs">
<pathelement path="${classpath}"/>
<pathelement location="${wad.jar}"/>
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</path>
And:
<taskdef name="createdTask"
classname="my.path.myCreatedTaskClass">
<classpath refid="libs" />
</taskdef>
But, I got problems on the execution. It has not loaded my JAR
files.
Why?
Thanks,
Farhdine.