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...@apache.org on 2001/02/04 02:02:49 UTC

cvs commit: jakarta-tomcat-4.0 build.xml

craigmcc    01/02/03 17:02:49

  Modified:    .        build.xml
  Log:
  One more update so that the webapps get deployed to the right place,
  even with no special properties on the command line.
  
  Revision  Changes    Path
  1.16      +6 -0      jakarta-tomcat-4.0/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/build.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- build.xml	2001/02/01 19:07:34	1.15
  +++ build.xml	2001/02/04 01:02:49	1.16
  @@ -6,6 +6,12 @@
     <property name="jasper.build"    value="${basedir}/jasper/build"/>
     <property name="tomcat.build"    value="${basedir}/build"/>
     <property name="tomcat.dist"     value="${basedir}/dist"/>
  +  <property name="webapps.build"   value="${basedir}/webapps/build"/>
  +  <property name="webapps.dist"    value="${basedir}/webapps/dist"/>
  +
  +  <property name="catalina.deploy" value="${tomcat.build}"/>
  +  <property name="jasper.deploy"   value="${tomcat.build}"/>
  +  <property name="webapps.deploy"  value="${tomcat.build}"/>
   
   
     <!-- ===================== DEPLOY: Create Directories =================== -->