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/12/10 02:15:05 UTC

cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs/appdev build.xml.txt

craigmcc    01/12/09 17:15:05

  Modified:    webapps/tomcat-docs/appdev build.xml.txt
  Log:
  Usability improvements to the default build.xml script described in the
  Application Developer's Guide documentation.
  
  PR: Bugzilla #4917
  Submitted by:	Brian Ewins <Br...@btinternet.com>
  
  Revision  Changes    Path
  1.3       +13 -9     jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/build.xml.txt
  
  Index: build.xml.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/build.xml.txt,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml.txt	2001/09/17 03:16:58	1.2
  +++ build.xml.txt	2001/12/10 01:15:05	1.3
  @@ -33,6 +33,8 @@
   
   -->
   
  +  <property file="build.properties"/>
  +  <property file="${user.home}/build.properties"/>
   
   
   <!-- ==================== File and Directory Names ======================== -->
  @@ -214,7 +216,7 @@
       </javac>
   
       <!-- Copy associated resource files -->
  -    <copy  todir="${build.home}/library/classes">
  +    <copy  todir="${build.home}/WEB-INF/classes">
       <fileset dir="src" includes="**/*.properties"/>
       </copy>
   
  @@ -242,13 +244,6 @@
         <fileset dir="${build.home}"/>
       </copy>
   
  -    <!-- Copy external dependencies as required -->
  -    <!-- *** CUSTOMIZE HERE AS REQUIRED BY YOUR APPLICATION *** -->
  -    <mkdir  dir="${deploy.home}/WEB-INF/lib"/>
  -<!--
  -    <copy todir="${deploy.home}/WEB-INF/lib" file="${foo.jar}"/>
  --->
  -
     </target>
   
   
  @@ -302,7 +297,9 @@
       <mkdir          dir="${dist.home}/docs/api"/>
       <javadoc sourcepath="src"
                   destdir="${dist.home}/docs/api"
  -           packagenames="mypackage.*"/>
  +           packagenames="*"/>
  +      <classpath refid="compile.classpath"/>
  +    </javadoc>
   
     </target>
   
  @@ -328,6 +325,13 @@
       <copy todir="${build.home}">
         <fileset dir="web"/>
       </copy>
  +
  +    <!-- Copy external dependencies as required -->
  +    <!-- *** CUSTOMIZE HERE AS REQUIRED BY YOUR APPLICATION *** -->
  +    <mkdir  dir="${build.home}/WEB-INF/lib"/>
  +<!--
  +    <copy todir="${build.home}/WEB-INF/lib" file="${foo.jar}"/>
  +-->
   
       <!-- Copy static files from external dependencies as needed -->
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>