craigmcc    01/04/30 12:03:53

  Modified:    .        build.xml
  Log:
  Add a "dist" target that does all-in-one "ant dist" executions on the
  included packages that are designed to create stand-alone JAR files.
  Currently, this list omits Cactus because there is a slightly more
  involved setup process to build and use it.
  
  Revision  Changes    Path
  1.2       +18 -0     jakarta-commons/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 2001/04/03 04:04:49     1.1
  +++ build.xml 2001/04/30 19:03:50     1.2
  @@ -105,6 +105,24 @@
     
     </target>
   
  +
  +  <!-- ==================================================================== -->
  +  <!-- Make distribution directories for included Commons packages          -->
  +  <!-- ==================================================================== -->
  +
  +  <target name="dist"
  +          description="--> generates package binary distributions"
  +          >
  +
  +    <!-- NOTE: ordering should respect any dependencies -->
  +    <ant target="dist" dir="beanutils"/>
  +    <ant target="dist" dir="collections"/>
  +    <ant target="dist" dir="pool"/>
  +    <ant target="dist" dir="dbcp"/>
  +    <ant target="dist" dir="httpclient"/>
  +
  +  </target>
  +
       
   </project>
   
  
  
  

Reply via email to