diff --git a/examples/otherProjects/SavageWebServlet/build.xml b/examples/otherProjects/SavageWebServlet/build.xml index 1da95674a277d782fb9893ef31cad6a6c4118b2d..e994fd4b126ab6e724324b83dd9bb039fe595d15 100755 --- a/examples/otherProjects/SavageWebServlet/build.xml +++ b/examples/otherProjects/SavageWebServlet/build.xml @@ -28,15 +28,13 @@ <import file="${catalina.base}/bin/catalina-tasks.xml"/> <path id="compile.classpath"> - <fileset dir="${lib}"> + <fileset id="cp" dir="${lib}"> <include name="*.jar"/> </fileset> </path> <path id="run.classpath"> - <fileset id="cp" dir="${lib}"> - <include name="*.jar"/> - </fileset> + <path refid="cp"/> <pathelement location="${build}/WEB-INF/classes"/> </path> @@ -115,7 +113,7 @@ <target name="deployRunDemo" depends="undeployRpcDemo,clean,dist" - description="Builds the web application starts a local Tomcat server and runs XML RPC demo"> + description="Builds the web application starts, a local Tomcat server and runs XML RPC demo"> <sequential> <antcall target="start.tomcat"/> <!-- Allow Tomcat to startup -->