devdaily home | apple | java | perl | unix | directory | blog

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<project default="export-src">

  <target name="export-local">
    <tstamp/>

    <property file="src/relnum.prp"/>
    <property name="version" value="${version.major}.${version.minor}.${version.step}-${version.build}" />
    <property name="stamp" value="${DSTAMP}-${TSTAMP}" />
    
    <zip zipfile="${APP}-${version}-src.zip" basedir=".">
      <include name="src/**"/>
      <include name="ant/**"/>
      <include name="_lib/**"/>
      <include name="README*"/>
      <exclude name="${exclude}"/>
    </zip>
  </target>
  
  <target name="export-up" depends="export-local" if="at.home">
    <copy file="${APP}-${version}-src.zip" tofile="../_dist/${APP}-${version}-src.zip" filtering="off" overwrite="true"/>
  </target>
  
  <target name="export-src" depends="export-local,export-up"/>
  

</project>




Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
 
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com