--- Ravi Dodla <[EMAIL PROTECTED]> wrote: > I have a build script build-A.xml wholse target A invokes build-B.xml > target B using an AntCall .. > > I need to query some project properties which are set by a task in > target B after the target A executes .. > > How do I do this .. The problem I am having is that the project > properties set by build-B.xml are not being propagated back to > build-A.xml. Is there a way to do this ..
You'd need to write the properties that get set by build-B.xml out to a properties file (using something like <echo> or <propertyfile>), then read that file in from build-A.xml, using <property file=.../>. Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
