In  ant build.xml can I call a target from other ant build.xml
  
  
  For Example   I have two ant build scripts build1.xml and  build2.xml
  
  and default target from build1.xml   below
  
      <target name="build_app" depends="clean,compile">
          <copy todir="${app.home}/${app.name}">
              <fileset dir="${dist.home}" includes="**/*.jar" />
              <fileset dir="${dist.home}" includes="**/*.war" />
          </copy>
      </target>
  
  
  
  In  the above target can I call a target from build2.xml ?
  Thanks & Regards
  
  
                
---------------------------------
 Yahoo! Mail
 Use Photomail to share photos without annoying attachments.

Reply via email to