码迷,mamicode.com
首页 > 其他好文 > 详细

ant

时间:2014-09-04 14:34:29      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   strong   div   sp   log   

condition逻辑判断:

<project name="testCondition">
    <target name="test">
        <condition property="condition">
            <istrue value="true"/>                    
        </condition>
        <antcall target="isTrue"></antcall>
        <antcall target="isFalse"></antcall>        
    </target>
    <target name="isTrue" if="condition">
        <echo>is ture</echo>
    </target>
    <target name="isFalse" unless="condition">
        <echo>is false</echo>
    </target>
</project>

 

ant

标签:style   blog   color   io   ar   strong   div   sp   log   

原文地址:http://www.cnblogs.com/rigid/p/3955856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!