0

我在一个项目中有我的 version.xml,我在其中定义了所有 IVY 配置和依赖项。我使用 ANT 脚本下载和检索人工制品,到目前为止一切正常。

我正在寻找的是,无论如何我都可以找到 version.xml 中是否存在某些配置,并且某些依赖项被配置为从 ANT 脚本中使用它,比如检查是否我想做一些额外的东西,如果它被配置为其他方式简单地跳过。例如我的 version.xml 如下所示;

<?xml-stylesheet type="text/xsl" href="http://repository.temenosgroup.com/xsl/version-doc.xsl"?>
<ivy-module version="2.0" xmlns:e="http://ant.apache.org/ivy/extra">
    <info organisation="TEMENOS" branch="MAIN" module="StateEngine" />
    <!-- "war->compile(*)" this means the 'war' configuration depends on the
    'compile' configuration of the dependency and if the dependency is not
    found in 'compile' then use the 'default' (same as '*') config (usually that is all dependencies) -->
    <configurations defaultconfmapping="test->test(*);compile->compile(*);componentDep->componentDep(*)">
        <conf name="test" description="Test Time dependencies"/>
        <conf name="compile" description="Build Time dependencies"/>
       <conf name="componentDep" description="To resolve component level dependencies" />
    </configurations>
    <publications>
        <artifact name="#SERVICE_NAME#" type="" ext="zip" />
        <artifact name="#SERVICE_NAME#" type="" ext="zip" e:platform="#PLATFORM_WIN#" />
        <artifact name="#SERVICE_NAME#" type="" ext="zip" e:platform="#PLATFORM_UNIX#" />
    </publications>
    <dependencies>
        ....
        <!-- Define Component Level Dependencies Below -->
        <dependency org="TEMENOS" branch="MAIN" name="StateMachine" transitive="false" rev="latest-dev" conf="componentDep" >
            <artifact name="StateMachineService" ext="zip" e:platform="#PLATFORM_WIN#" type="" conf="componentDep" />
            <artifact name="StateMachineService" ext="zip" e:platform="#PLATFORM_UNIX#" type="" conf="componentDep" />
            <artifact name="StateMachineService" ext="zip" type="" conf="componentDep" /> 
        </dependency>
    </dependencies>
</ivy-module>

那么,在 ANT 中是否有任何可用的目标,例如“ivy:...”,它可以返回“true”或“false”,如何告诉我有一个依赖项正在尝试使用名为“componentDep”的配置?这样我就可以做额外的事情了……否则跳过。我不想在 ANT 中自己解析文件,因为这不是一个好主意。

注意:我使用的是 ANT 1.8.2 和 IVY 2.2.0

希望我说得通。如果您需要更多信息,请告诉我。

谢谢,

--

斯茹内霍

4

1 回答 1

2

常春藤通常使用一个名为ivy.xml的文件来解析.....

我怀疑您的version.xml文件是为了替代而设计的?也许您的构建正在运行时生成常春藤文件?

怀疑的原因

ivy 发布的文件名似乎无效....我怀疑你创建了 3 个名为#SERVICE_NAME#.zip的文件

<publications>
    <artifact name="#SERVICE_NAME#" type="" ext="zip" />
    <artifact name="#SERVICE_NAME#" type="" ext="zip" e:platform="#PLATFORM_WIN#" />
    <artifact name="#SERVICE_NAME#" type="" ext="zip" e:platform="#PLATFORM_UNIX#" />
</publications>

在您的构建中的其他地方,我认为有一个过滤副本正在进行......

您原来问题的可能答案

我想你正在寻找常春藤分辨率报告?这将创建与每个项目配置关联的文件的 HTML 报告。使用如下:

<target name="init">
    <ivy:resolve/>

    <ivy:report todir='${ivy.reports.dir}' graph='false' xml='false'/>

     ..
</target>
于 2012-06-15T15:35:06.660 回答