Your preferences have been saved!
» One ant script calls another antscript and dir setting - <project name="ACT" basedir="." default="build">   <property name="prototype" value="prototype"/>   <property name="main" value="main"/>      <target name="build" description="Building all ACT projects">     <ant antfile="build.xml" dir="${prototype}"/>   </target> </project>... 16 Feb 12 » Ant script calls another ant script - <project name="ajax4jsf" default="distribute">   <property name="commonLibs.dir" value="${basedir}/commonLibs"></property>      <property name="distrib.dir" value="${basedir}/distribution"/>   <property name="work.dir" value="${basedir}/build"/>      <property name="src.root.dir" value="${basedir}/src"></property>      <property name="test.src.dir" value="${src.root.dir}/testCase"></property>   <property name="framework.src.dir" value="${src.root.dir}/framework"></property>... 16 Feb 12 » Ant call another ant script - <project name="foo" default="deploy" basedir=".">      <target name="init">     <tstamp/>     <property name="src" value="src" />     <property name="build" value="build" />     <property name="classes" value="classes" />     <property name="deploy" value="deploy" />     <property name="config" value="config" />     <property name="runDir" value="." />... 16 Feb 12 » Use main ant build file call sub build file - <?xml version="1.0"?> <project name="Example Application Build" default="build-both" basedir=".">   <property file="build.properties"/>   <!-- ################################### -->   <!-- The master build classpath          -->    <!-- ################################### -->   <path id="build.classpath">     <pathelement location="${servlet24.jar}"/>     <pathelement location="${jsp20.jar}"/>     <pathelement location="${mysql.jar}"/>... 16 Feb 12