rleland     2003/06/25 05:52:55

  Modified:    .        build.xml
  Log:
  Change version to 1.1-dev, and add back dist.legacy target that
  was deleted.
  
  Revision  Changes    Path
  1.110     +21 -3     jakarta-struts/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.xml,v
  retrieving revision 1.109
  retrieving revision 1.110
  diff -u -r1.109 -r1.110
  --- build.xml 24 Jun 2003 05:45:13 -0000      1.109
  +++ build.xml 25 Jun 2003 12:52:55 -0000      1.110
  @@ -137,7 +137,7 @@
       <property name="project.name" value="jakarta-struts"/>
   
       <!-- Version of the project -->
  -    <property name="project.version" value="1.1-rc2-post"/>
  +    <property name="project.version" value="1.1-dev"/>
   
   
   <!-- ========== Derived Properties ======================================== -->
  @@ -395,6 +395,15 @@
       </target>
   
   <!--
  +        Construct distributable struts legacy support for datasources
  +-->
  +    <target name="dist.legacy" >
  +        <ant antfile="build.xml" dir="contrib/struts-legacy"
  +              target="dist"/>
  +    </target>
  +
  +
  +<!--
           Build the contrib modules that are packaged with the binary
   -->
       <target name="dist.contrib" depends="dist.source" if="jstl.jar">
  @@ -418,7 +427,7 @@
           Construct complete binary distribution
   -->
       <target name="dist"
  -         depends="dist.library,dist.webapps,dist.source,dist.contrib"
  +         depends="dist.legacy,dist.library,dist.webapps,dist.source,dist.contrib"
        description="Construct binary distribution"/>
   
   <!--
  @@ -718,11 +727,20 @@
           </copy>
   
       </target>
  +    
  +<!--
  +       Clean struts legacy distribution
  +-->
  +    <target name="clean.legacy" >
  +        <ant antfile="build.xml" dir="contrib/struts-legacy" 
  +        inheritall="false" target="clean"/>
  +    </target>
  +
   
   <!--
           Clean up build and distribution directories
   -->
  -    <target name="clean"
  +    <target name="clean" depends="clean.legacy"
        description="Clean build and distribution directories">
           <delete dir="${build.home}"/>
           <delete dir="${dist.home}"/>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to