我在一个项目中有我的 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
希望我说得通。如果您需要更多信息,请告诉我。
谢谢,
--
斯茹内霍