如何从Ant build.xml获取Ivy版本

时间:2013-11-08 18:25:42

标签: java ant ivy build.xml

我的灵魂就在这里...我只是希望能够从build.xml文件中获取Ivy的版本,因为我们需要2.2.0+。它应该很简单,但我还没有办法做到这一点......有没有办法做到这一点?

1 个答案:

答案 0 :(得分:3)

运行常春藤解决任务将设置一系列常春藤属性:

<target name="version">
    <ivy:resolve/>
    <echoproperties prefix="ivy."/>
</target>

示例输出:

[echoproperties] #Ant properties
[echoproperties] #Fri Nov 08 21:21:08 GMT 2013
[echoproperties] ivy.basedir=/home/mark/project
..
..
[echoproperties] ivy.version=2.3.0