Re: antcall and build.xml being modified.

2003-09-05 Thread Stefan Bodewig
On Thu, 4 Sep 2003, Larry Shatzer [EMAIL PROTECTED] wrote: Is Ant supposed to lock the build file at runtime on windows? No, and as I'm lucky to not use Windows (this may have to change soon, *shudder*) I didn't know for sure. I simply expected it would do - but Ant probably closes the file

Re: antcall and build.xml being modified.

2003-09-04 Thread Stefan Bodewig
On Wed, 3 Sep 2003, Larry Shatzer [EMAIL PROTECTED] wrote: When it is run the output is as follows: As long as you are not using an OS like Windows that locks your build file while Ant is running. I figured the output would have been this: antcall is just a thin layer on top of ant, it

Re: antcall and build.xml being modified.

2003-09-04 Thread Stefan Bodewig
On Thu, 4 Sep 2003, Conor MacNeill [EMAIL PROTECTED] wrote: I would like to have this documented as undefined. I agree and will change my blurb accordingly. Stefan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: antcall and build.xml being modified.

2003-09-04 Thread Dominique Devienne
-Original Message- From: Conor MacNeill [mailto:[EMAIL PROTECTED] Self-modifying builds are not a practice I would recommend. I actually disagree with that statement somewhat. As long as the self-modification is controlled and static, it's actually a good and powerful way to build

RE: antcall and build.xml being modified.

2003-09-04 Thread Shatzer, Larry
-Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 12:32 AM To: [EMAIL PROTECTED] Subject: Re: antcall and build.xml being modified. On Wed, 3 Sep 2003, Larry Shatzer [EMAIL PROTECTED] wrote: When it is run the output

RE: antcall and build.xml being modified.

2003-09-04 Thread Shatzer, Larry
-Original Message- From: Conor MacNeill [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 2:45 AM To: Ant Developers List Subject: Re: antcall and build.xml being modified. Self-modifying builds are not a practice I would recommend. Let me clarify, the build script I

RE: antcall and build.xml being modified.

2003-09-04 Thread Shatzer, Larry
-Original Message- From: Dominique Devienne [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 6:54 AM To: 'Ant Developers List' Subject: RE: antcall and build.xml being modified. I do agree about not locking Ant into forcing reparsing if the build file is changed

antcall and build.xml being modified.

2003-09-03 Thread Shatzer, Larry
Consider the following build file: ?xml version=1.0 encoding=UTF-8? project name=test default=test target name=test antcall target=echotarget/ replace file = build.xml token = amp;lt;TEST MESSAGEamp;gt; value = amp;lt;test messageamp;gt; / antcall