husted      01/09/17 12:52:22

  Modified:    .        build-webapps.xml
  Log:
  Add clause for copying "legacy" files into documentation folder.
  
  Revision  Changes    Path
  1.7       +11 -5     jakarta-struts/build-webapps.xml
  
  Index: build-webapps.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build-webapps.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build-webapps.xml 2001/09/10 13:18:01     1.6
  +++ build-webapps.xml 2001/09/17 19:52:22     1.7
  @@ -185,15 +185,21 @@
           <include name="**/*.js"/>
         </fileset>
       </copy>
  -     
  -     <!-- Compile Tiles contrib -->
  +    <!-- Copy the legacy documentation -->
  +    <copy      todir="${build.home}/documentation">
  +      <fileset   dir="legacy">
  +        <include name="**/*.*"/>
  +      </fileset>
  +    </copy>
  +    
  +    <!-- Compile Tiles contrib -->
       <ant  antFile="build.xml"  dir="contrib/tiles"  target="compile.for.struts">
         <property name="struts.libs"      value="../../${struts.libs}"/>
         <property name="build.home"       value="../../${build.home}/tiles"/>
         <property name="dist.home"        value="../../${dist.home}"/>
         <property name="app.name"         value="tiles"/>
         <property name="project.name"     value="Tiles"/>
  -    </ant>   
  +    </ant>  
   
   </target>
   
  @@ -240,8 +246,8 @@
   -->
   <target name="dist" depends="dist.generic"
           description="Create distribution output of web applications">
  -             
  -     <!-- Compile Tiles dist -->
  +        
  +    <!-- Compile Tiles dist -->
       <ant  antFile="build.xml"  dir="contrib/tiles"  target="dist.for.struts">
         <property name="struts.libs"      value="../../${struts.libs}"/>
         <property name="build.home"       value="../../${build.home}/tiles"/>
  
  
  

Reply via email to