Tomcat 7.0.52 Ant 1.9.2 Windows 7
I am trying to use an Ant task to deploy a specific version of a tomcat app. I want to do this bacause of the parallel deployment feature. My task so far: <target name="tomcat.deploy" > <deploy url="http://host/manager/text" username="${deploy.user}" password="${deploy.pass}" path="/" war="file:${build-directory}/ROOT%23%23${version}.war"/> </target> But it is not working, what can I do to be able to deploy a specifi version? Marcos
