On 6/24/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > I may not have explained what I did very well... > > I have a base target that is like this: > > <target name="build"> > <antcall target="startup_details" /> > <antcall target="stop_tomcat" /> > <antcall target="pre_cleanup" /> > <antcall target="compile_app" /> > <antcall target="update_system_about" /> > ... > </target> > > There's probably 10-15 more where you see the ... All the > called targets are within the same build script. ...
What if the target is outside the build script? Specifically, from build.xml: <target name="foo"> <antcall target="doFoo"> </antcall> </target> also in build.xml: <target name="doFoo"> <echo message="doFoo.." /> </target> but I can't figure out how to move the doFoo target outside of the build.xml file. Thanks, Thufir --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]