1 <?xml version="1.0" encoding="UTF-8"?>
   2 <project default="sampleAppsJar" basedir=".">
   3 
   4     <!-- 
   5        Note: this build.xml will be pulled into the
   6        Gradle namespace, so lets use long names...
   7     -->
   8 
   9     <target name="sampleAppsJar">
  10         <ant dir="samples" target="jar" inheritAll="true"/>
  11         <ant dir="experiments" target="jar" inheritAll="true"/>
  12         <ant dir="performance" target="jar" inheritAll="true"/>
  13         <ant dir="toys" target="jar" inheritAll="true"/>
  14     </target>
  15 
  16     <target name="sampleAppsClean">
  17         <ant dir="samples" target="clean" inheritAll="true"/>
  18         <ant dir="experiments" target="clean" inheritAll="true"/>
  19         <ant dir="performance" target="clean" inheritAll="true"/>
  20         <ant dir="toys" target="clean" inheritAll="true"/>
  21     </target>
  22 
  23 </project>
  24 
  25