调用另一个ant脚本的蚂蚁脚本的奇怪行为,为什么?

我对Ant非常陌生(来自Maven),我发现很多问题需要做以下操作。

我有一个名为CrystalIceGUI的主项目,它使用另一个名为ShellExtBridge的依赖项目。

依赖项目ShellExtBridge有一个自己的build.xml文件,用于编译该项目并将其打包成一个jar文件,放入一个名为Release的目录中

主项目CrystalIceGUIbuild.xml ant文件包含一个名为init的目标,该目标尝试执行ShellExtBridge依赖项目的build.xml文件以构建此项目,稍后在其他目标中使用它的jar。

问题是,如果我执行ShellExtBridge的build.xml ant脚本,它运行良好,jar文件正确地创建到它的Release目录中(所以我认为这个ant脚本是可以的),但是如果我从build.xml它的主要项目给了我很长的一系列错误。

这是ShellExtBridge依赖项目的build.xml

<?xml version="1.0"?>
<project default="default">

    <!-- ============================================ -->
    <!-- Load build properties                        -->
    <!-- ============================================ -->

    <property name="project.buildfile" value="build.num" />
    <property file="${project.buildfile}" />
    <property file="info.properties" />


    <!-- ============================================ -->
    <!-- The default target                           -->
    <!-- ============================================ -->

    <target name="default" depends="jar" />

    <!-- Elimina le cartelle contenenti le classi compilate ed i jar -->
    <target name="clean">
        <echo message="Into ShellExtBridge build.xml clean target"/>
        <delete dir="../Release" />
        <!-- Elimina directory del jar finale -->
        <delete dir="bin" />
        <!-- Elimina directory delle classi compilate -->
    </target>


    <!-- Contiene i task di COMPILAZIONE: 
         1) Crea la directory "bin/" nel progetto
         2) Compila tutte le classi dentro la cartella "src" del progetto e mette i risultanti .class
            dentro "bin"
    -->
    <target name="compile" depends="clean">
        <echo message="Into ShellExtBridge build.xml compile target"/>
        <mkdir dir="bin" />
        <javac srcdir="src" destdir="bin" />
    </target>

    <target name="jar" description="Packs classes of shellextbridge" depends="compile">
        <echo message="Into ShellExtBridge build.xml jar target"/>
        <jar destfile="../Release/shellExtBridge.jar" index="false">
            <fileset dir="bin" />
            <manifest>
                <attribute name="Created-By" value="${info.software.author}" />
                <attribute name="Main-Class" value="com.techub.crystalice.rmi.Main" />
            </manifest>
        </jar>

    </target>

</project>

这是主项目CrystalIceGUIbuild.xml文件的init目标:

<target name="init">


        <ant antfile="${basedir}../../../ShellExtBridge/Project/build.xml" />
</target>

如果我去执行这个ant脚本的init目标,我会得到这些错误:

Buildfile: /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/build.xml
init:
clean:
     [echo] Into ShellExtBridge build.xml clean target
   [delete] Deleting directory /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/bin
compile:
     [echo] Into ShellExtBridge build.xml compile target
    [mkdir] Created dir: /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/bin
    [javac] /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/ShellExtBridge/Project/build.xml:37: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 117 source files to /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/bin
    [javac] /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/src/com/techub/crystalice/utils/QuickLocale.java:8: package org.apache.log4j does not exist
    [javac] import org.apache.log4j.Logger;
    [javac]                        ^
    [javac] /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/src/com/techub/crystalice/fuse/AtmosFuseWrapper.java:8: package org.apache.log4j does not exist
    [javac] import org.apache.log4j.Logger;
    [javac]                        ^
    [javac] /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/src/com/techub/crystalice/fuse/AtmosFuseWrapper.java:11: package com.techub.crystalice.jaxb.settings does not exist
    [javac] import com.techub.crystalice.jaxb.settings.DriveType;
    [javac] 
...............................................................................
...............................................................................
ETCETCETC MANY OTHERS SIMILAR ERRORS
...............................................................................
...............................................................................
BUILD FAILED
/home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/CrystalIceGUI/Project/build.xml:70: The following error occurred while executing this line:
/home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/ShellExtBridge/Project/build.xml:37: Compile failed; see the compiler error output for details.

正如你所看到的,似乎依赖ShellExtBridge项目的build.xml ant脚本被调用,因为显示了这个ant脚本的回显消息

但是有一些奇怪的地方,因为当ShellExtBridge的build.xml脚本被调用时执行这些操作:

[echo]进入ShellExtBridge build.xml清理目标[delete]删除目录/ home / andrea / Documenti / XCloud / Implementazione / CrossPlatform / CrystalIceGUI / Project / bin编译:[echo]进入ShellExtBridge build.xml编译目标[mkdir]创建目录:/ home / andrea / Documenti / XCloud / Implementazione / CrossPlatform / CrystalIceGUI / Project / bin [javac] /home/andrea/Documenti/XCloud/Implementazione/CrossPlatform/ShellExtBridge/Project/build.xml:37:warning:'includeantruntime'没有设置,默认为build.sysclasspath = last; 为可重复构建设置为false

它删除这个目录/ home / andrea / Documenti / XCloud / Implementazione / CrossPlatform / CrystalIceGUI / Project / bin,而不是正确的目录,它是与ShellExtBridge项目内的bin目录相关的目录。

似乎是这样,当它调用ShellExtBridge项目的ant文件时,失去了它的引用,并在主项目的文件夹上执行操作,而不是在正确的项目上执行操作。

你有什么想法来解决它?


我认为这很容易解决。 <ant>任务将使用当前目录作为工作目录,除非您指定dir属性(并且另外如果要运行的目标文件名为build.xml,则可以省略antfile属性)。

所以,在这里,我建议的初始目标是:

<target name="init">
    <ant dir="${basedir}../../../ShellExtBridge/Project" />
</target>

这里是关于dir属性的官方文档:

dir:用作新Ant项目的basedir的目录(除非useNativeBasedir设置为true)。 默认为当前项目的basedir,除非inheritall被设置为false,在这种情况下,它没有默认值。 这将覆盖被调用项目的basedir设置。 也可以作为解析antfile和输出属性值的目录(如果有的话)。


我无法只使用diruseNativeBasedir选项来自己工作(使用Ant 1.9.3)。 我必须提供inheritall="false"并指定子Ant构建的dir选项以使用正确的basedir:

<target name="stage" depends="init">
    <ant antfile="../otherproject/build.xml" inheritall="false" dir="../otherproject">
</target>
链接地址: http://www.djcxy.com/p/44331.html

上一篇: Strange behavior of ant script that call another ant script, why?

下一篇: Stop ant script without failing build