0

我使用QAF和 ant 作为构建脚本,IVY 作为依赖管理工具。为了自动安装常春藤,构建脚本具有以下 ant 目标:

<target name="download-ivy" unless="skip.download">
    <mkdir dir="${ivy.jar.dir}" />
    <!-- download Ivy from web site so that it can be used even without any 
        special installation -->
    <echo message="installing ivy..." />
    <get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar" dest="${ivy.jar.file}" usetimestamp="true" />
</target>

有 build.properties 其中属性skip.download提供给下载常春藤 ON 或 OFF 通过提供相应的值truefalse

skip.download现在的问题是我在它认为的 build.properties 中提供的任何值true,并且总是执行目标(下载常春藤)。

#not working
skip.download=false

我参考了IVY + Ant 文档,它具有类似的以下目标,具有不同的属性名称。

<target name="download-ivy" unless="offline">

    <mkdir dir="${ivy.jar.dir}"/>
    <!-- download Ivy from web site so that it can be used even without any special installation -->
    <get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar" 
         dest="${ivy.jar.file}" usetimestamp="true"/>
</target>

我找到了解决方法,因为解决方法需要删除或评论该属性才能跳过下载。

有没有什么办法可以使属性值与目标中的除非属性一起正常工作?

4

1 回答 1

1

我使用以下目标来安装 ivy。请注意它如何使用可用任务来确定 ivy 是否已安装:

<available classname="org.apache.ivy.Main" property="ivy.installed"/>

<target name="install-ivy" description="Install ivy" unless="ivy.installed">
    <mkdir dir="${user.home}/.ant/lib"/>
    <get dest="${user.home}/.ant/lib/ivy.jar" src="http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.4.0/ivy-2.4.0.jar"/>
    <fail message="Ivy has been installed. Run the build again"/>
</target>

笔记:

  • 目录“$HOME/.ant/lib”是 ivy 用于加载 3rd 方扩展的标准位置之一。
于 2016-11-14T05:33:00.223 回答