dear,

I have the following issue in my ant-script.
When I define the mockmaker ant-task, it complains witht the following :
  build-qa.xml:38: taskdef class mockmaker.AntTask cannot be found

The task are always defined with a classpathref, like what follows :
[snip]
<taskdef name="mockmaker" classname="mockmaker.AntTask">
      <classpath refid="path.mock"/>
</taskdef>
[/snip]
so project can do what ever they want w/o polluting the common (unique) ant installation (for Cruisecontrole).
The path with id "path.mock" contains the 3 following libraries :
   _ \Projects\lib\mockmacker\mmmockobjects.jar
   _ \Projects\lib\mockmacker\mockmaker.jar
   _ \Projects\lib\mockmacker\qdox-1.0.jar

What am I missing ... ?

\T,