Hello,
could somebody please explain to me what is the precedence of
properties in a project:
+ set in build.xml
+ specified with -D at prompt
+ from the properties file
+ is there a difference between setting a property in the xml, or calling
.setProperty() from a <script>.
Thank You,
Edward Grinvald
Computer Associates International
Programmer, Storage Development
[EMAIL PROTECTED]
1-631-342-6000 x76350
-----Original Message-----
From: Marc Logemann [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 12, 2002 11:36 AM
To: [EMAIL PROTECTED]
Subject: Re: parsing a task output for further processing
> If you're running Ant1.5, and assuming <tclist> has an option to write
> its output to a file (which, if it doesn't, would definitely be bad,
> but I suppose you could work around it in the meantime by bracketing
> your <tclist> in a <record>):
> <property name="app" value="maxbahr"/>
> <target name="stopApp" depends="chkAppStatus" if="app.running">
> <echo>Stopping ${app}...</echo>
> <tcstop url="${catalina.url}" username="${catalina.username}"
> password="${catalina.password}" path="/${app}"/>
> </target>
> <target name="chkAppStatus">
> <loadfile property="app.running" srcFile="tclist.out">
> <filterchain>
> <linecontains>
> <contains value="/${app}:running"/>
> </linecontains>
> </filterchain>
> </loadfile>
> </target>
Diane, thx for this great solution. It seems i ve missed some important
commands in Ant like <loadfile> or <filterchain>.
Cause tclist cant output to file (IMO) i will also look up your mentioned
<record> command.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>