I have found a solution without using the deprecated InstallTask:

change the install-Target so that it looks like:

  <target name="install" depends="compile"
   description="Install application to servlet container">

    <deploy url="${manager.url}"
       username="${manager.username}"
       password="${manager.password}"
           path="${app.path}"
           localWar="file://${build.home}"
           update="true"/>

  </target>

This works great for me. 

Best Regards,
Rainer

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

Reply via email to