蚂蚁叫另一只蚂蚁

时间:2012-12-21 15:18:35

标签: ant

当我尝试调用另一个ant构建文件并将其结果复制到目录时,我遇到了问题:

<!-- Copying PatientStation -->

<ant dir="../SubProject" antfile="build.xml" />

<copy todir="D:/Export">
    <fileset dir="../SubProject/${fullVersionName}/jar" />
</copy>

在蚂蚁电话之后,我没有位于远程目录而不是当前的目录。

BUILD FAILED
D:\myWorkspace\Build\build1.xml:64: D:\myWorkspace\SubProject\D:\Export does not exist.

2 个答案:

答案 0 :(得分:1)

我没有在我面前安装一台PC,所以我不能肯定地知道什么会起作用,但通常在Ant中,如果一个目录没有以斜杠开头,则假定它是一个子目录当前的${basedir}

请尝试以下方法之一:

<!-- You're in the "D" drive, so don't specify the drive letter -->
<!-- This specifies the current drive you're on -->
<copy todir="/Export"/>

或者

<!-- If that doesn't work, try this -->
<!-- Windows uses backslash as separators -->
<copy todir="D:\\Export"/>

或者

<!-- Add a slash in front of the drive letter -->
<copy todir="/D:/Export"/>

其中一种可行。

答案 1 :(得分:0)

您可以通过在变量中设置目标文件夹位置来完成此操作。

试试这个:

    <property name="tgtpath" location="D:/Export" />
    <copy todir="${tgtpath}">
        <fileset dir="../SubProject/${fullVersionName}/jar" />
    </copy>