You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@locus.apache.org on 2000/03/28 04:39:33 UTC

cvs commit: jakarta-tomcat/src/doc/appdev build.xml.txt

craigmcc    00/03/27 18:39:33

  Modified:    src/doc/appdev build.xml.txt
  Log:
  Fix typos in example build.xml file.
  
  Revision  Changes    Path
  1.3       +2 -2      jakarta-tomcat/src/doc/appdev/build.xml.txt
  
  Index: build.xml.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/appdev/build.xml.txt,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml.txt	2000/03/28 00:44:11	1.2
  +++ build.xml.txt	2000/03/28 02:39:33	1.3
  @@ -60,7 +60,7 @@
          http://localhost:8080/myapp
   -->
   
  -  <target name="init"
  +  <target name="init">
       <!-- Property values defined here can be overridden by defining
            corresponding Java system properties on the Ant command line.  -->
       <property name="deploy.home"    value="${tomcat.home}/webapps/myapp"/>
  @@ -82,7 +82,7 @@
       <mkdir dir="${deploy.home}"/>
       <copydir src="web" dest="${deploy.home}"/>
       <mkdir dir="${deploy.home}/WEB-INF"/>
  -    <copyfile src="etc/web.xml" dest=${deploy.home}/WEB-INF/web.xml"/>
  +    <copyfile src="etc/web.xml" dest="${deploy.home}/WEB-INF/web.xml"/>
       <mkdir dir="${deploy.home}/WEB-INF/classes"/>
       <mkdir dir="${deploy.home}/WEB-INF/lib"/>
       <copydir src="lib" dest="${deploy.home}/lib"/>