remm 2003/12/19 10:59:44 Modified: webapps/docs manager-howto.xml Log: - The war attribute of the deploy task should point to a .war. Sorry for the trouble :-( Revision Changes Path 1.12 +3 -2 jakarta-tomcat-catalina/webapps/docs/manager-howto.xml Index: manager-howto.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/manager-howto.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- manager-howto.xml 6 Dec 2003 17:55:08 -0000 1.11 +++ manager-howto.xml 19 Dec 2003 18:59:44 -0000 1.12 @@ -964,13 +964,14 @@ <!-- Executable Targets --> <target name="compile" description="Compile web application"> - <!-- ... construct web application in ${build} subdirectory ... --> + <!-- ... construct web application in ${build} subdirectory, and + generated a ${path}.war ... --> </target> <target name="deploy" description="Install web application" depends="compile"> <deploy url="${url}" username="${username}" password="${password}" - path="${path}" war="file://${build}"/> + path="${path}" war="${build}${path}.war"/> </target> <target name="reload" description="Reload web application"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]