2013-07-02 42 views

回答

0
<project name="demo" default="build"> 

    <property name="tag" value="rel1.5"/> 

    <condition property="url.exists"> 
     <http url=" https://www.exampledomain.com/svn/MobileApp/Tags/${tag}" errorsBeginAt="401"/> 
    </condition> 

    <target name="check1" if="url.exists"> 
     <echo message="URL exists"/> 
    </target> 

    <target name="check2" unless="url.exists"> 
     <echo message="URL does not exist"/> 
    </target> 

    <target name="build" depends="check1,check2"> 
    </target> 

</project> 
+0

URL是否存在與否我得到同樣的output.check1: 因爲屬性'url.exists'未設置而跳過。 CHECK2: [迴音]網址不存在 編譯: [迴音]檢查 生成成功 總時間:0秒 – user1421121

+0

我給HTTPS請求。 – user1421121

+0

對於HTTP,上述補丁運行良好。 – user1421121

相關問題