The first has a "/" in front of the lib.
-> this is an absolute path.

Peter

On Mon, Mar 10, 2008 at 11:56 AM, Rob Wilson <[EMAIL PROTECTED]> wrote:
> I thought I would give some feedback, it seems that I made two mistakes...
>
>  1) I typed the incorrect version number, so this was why it could not find
>  the explicitly named jar file.
>
>  2) even after fixing the jar name this syntax did not work...
>
>
>  <taskdef resource="net/sf/antcontrib/antlib.xml">
>   <classpath>
>     <pathelement location="/lib/ant/ant-contrib-1.0b3.jar"/>
>   </classpath>
>  </taskdef>
>
>  (yes I did correct the jar name by this point!)
>
>  but this did work...
>
>
>  <taskdef resource="net/sf/antcontrib/antlib.xml">
>   <classpath>
>     <fileset dir="lib/ant" includes="*.jar"/>
>   </classpath>
>  </taskdef>
>
>  Does anyone know what was wrong with the first one?
>
>  Cheers,
>  Rob.
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to