On 31 Jul 2002, Jeremiah Jahn <[EMAIL PROTECTED]> wrote:
> Ok then, the following is what I would like to work,please let me
> know what is messed up.
> 
>  <taskdef name="install"
>          classname="org.apache.catalina.ant.InstallTask">
>     <classpath>
>       <pathelement location="lib/catalina-ant.jar"/>
>     </classpath>
>   </taskdef>

Does it give you any messages as to why it doesn't work?  Maybe if you
throw in a little -verbose or -debug?

before that you had

> > <taskdef resource="./tasks.properties">
> >     <classpath>
> >       <pathelement location="lib/catalina-ant.jar"/>
> >     </classpath>
> >   </taskdef>

and you probably mean

<taskdef file="tasks.properties">
  <classpath>
    <pathelement location="lib/catalina-ant.jar"/>
  </classpath>
</taskdef>

Stefan

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

Reply via email to