<project name="examples" default="all">

  <import file="../common.build.xml" />

  <target name="all">
    <ant antfile="build.xml" dir="hello" target="jar"/>
    <ant antfile="build.xml" dir="env" target="jar"/>
    <ant antfile="build.xml" dir="database" target="jar"/>
    <ant antfile="build.xml" dir="compref" target="jar"/>
    <ant antfile="build.xml" dir="web" target="jar"/>
    <ant antfile="build.xml" dir="pride" target="jar"/>
    <ant antfile="build.xml" dir="ojb" target="jar"/>
    <ant antfile="build.xml" dir="hibernate" target="jar"/>
    <ant antfile="build.xml" dir="jpa" target="jar"/>
    <ant antfile="build.xml" dir="test" target="jar"/>
  </target>

  <target name="clean">
    <ant antfile="build.xml" dir="hello" target="clean"/>
    <ant antfile="build.xml" dir="env" target="clean"/>
    <ant antfile="build.xml" dir="database" target="clean"/>
    <ant antfile="build.xml" dir="compref" target="clean"/>
    <ant antfile="build.xml" dir="web" target="clean"/>
    <ant antfile="build.xml" dir="pride" target="clean"/>
    <ant antfile="build.xml" dir="ojb" target="clean"/>
    <ant antfile="build.xml" dir="hibernate" target="clean"/>
    <ant antfile="build.xml" dir="jpa" target="clean"/>
    <ant antfile="build.xml" dir="test" target="clean"/>
  </target>

  <target name="help">
    <echo>Main example build script, providing the following targets:
  all: run [jar] on all sub scripts, to create all components
  clean: run [clean] on all sub scripts
    </echo>
  </target>

</project>
