craigmcc    01/02/25 16:33:05

  Modified:    .        build.xml
  Log:
  Include the source code of the "example" and "test" applications
  in the WAR files.
  
  Revision  Changes    Path
  1.40      +8 -1      jakarta-struts/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.xml,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- build.xml 2001/02/23 22:06:16     1.39
  +++ build.xml 2001/02/26 00:33:04     1.40
  @@ -66,6 +66,10 @@
       <mkdir   dir="${build.home}/example/WEB-INF"/>
       <mkdir   dir="${build.home}/example/WEB-INF/classes"/>
       <mkdir   dir="${build.home}/example/WEB-INF/lib"/>
  +    <mkdir   dir="${build.home}/example/WEB-INF/src"/>
  +    <copy  todir="${build.home}/example/WEB-INF/src">
  +      <fileset dir="src/example"/>
  +    </copy>
       <copy  todir="${build.home}/example">
         <fileset dir="web/example"/>
       </copy>
  @@ -80,6 +84,10 @@
       <mkdir   dir="${build.home}/test/WEB-INF"/>
       <mkdir   dir="${build.home}/test/WEB-INF/classes"/>
       <mkdir   dir="${build.home}/test/WEB-INF/lib"/>
  +    <mkdir   dir="${build.home}/test/WEB-INF/src"/>
  +    <copy  todir="${build.home}/test/WEB-INF/src">
  +      <fileset dir="src/test"/>
  +    </copy>
       <copy  todir="${build.home}/test">
         <fileset dir="web/test"/>
       </copy>
  @@ -256,7 +264,6 @@
     <!-- BUILD: Compile upload example application components -->
     <target name="compile.upload"
             depends="dist.library,prepare.upload">
  -
         <javac srcdir="web/upload"
                destdir="${build.home}/upload/WEB-INF/classes"
                classpath="${build.home}/library/classes:${servlet.jar}"
  
  
  

Reply via email to