> Can ant support multiple if and unless. I would rather not need to use
> ant-contrib for this.
> 
> These will infact look for a property called "x,y":
> <target name="my-target" if="x,y" unless="p,q">

Not directly. You would calculate a new property for that:

<condition property="xANDy">
    <available .../>
    <isset .../>
</concition>
<conction property="pORy">
    <or>
        <.../>
</condition>
<target ... if="xANDy" unless="pORy"/>


Jan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to