This is an automated email from the ASF dual-hosted git repository. jaikiran pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ant-ivy.git
commit 5a5e3eb08424a08596704990186d7e1eb7d68b1d Author: Jaikiran Pai <[email protected]> AuthorDate: Sat Nov 2 18:20:08 2019 +0530 Use newer version of Ivy in example Contributed-by: Gintautas Grigelionis Pull request: https://github.com/apache/ant-ivy/pull/90 --- asciidoc/install.adoc | 2 +- asciidoc/samples/build.xml | 2 +- src/example/go-ivy/build.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/asciidoc/install.adoc b/asciidoc/install.adoc index fae2146..db8a3f8 100644 --- a/asciidoc/install.adoc +++ b/asciidoc/install.adoc @@ -54,7 +54,7 @@ If you want to use Ivy only in your Ant build scripts, and have an internet conn [source,xml] ---- <project xmlns:ivy="antlib:org.apache.ivy.ant"> - <property name="ivy.install.version" value="2.1.0-rc2"/> + <property name="ivy.install.version" value="2.5.0"/> <condition property="ivy.home" value="${env.IVY_HOME}"> <isset property="env.IVY_HOME"/> </condition> diff --git a/asciidoc/samples/build.xml b/asciidoc/samples/build.xml index 418dcea..59f6f8b 100644 --- a/asciidoc/samples/build.xml +++ b/asciidoc/samples/build.xml @@ -38,7 +38,7 @@ <!-- here is the version of Ivy we will use. change this property to try a newer version if you want --> - <property name="ivy.install.version" value="2.4.0"/> + <property name="ivy.install.version" value="2.5.0"/> <property name="ivy.jar.dir" value="${basedir}/ivy"/> <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar"/> diff --git a/src/example/go-ivy/build.xml b/src/example/go-ivy/build.xml index d795929..dbbdc05 100644 --- a/src/example/go-ivy/build.xml +++ b/src/example/go-ivy/build.xml @@ -38,7 +38,7 @@ <!-- here is the version of ivy we will use. change this property to try a newer version if you want --> - <property name="ivy.install.version" value="2.0.0-beta1"/> + <property name="ivy.install.version" value="2.5.0"/> <property name="ivy.jar.dir" value="${basedir}/ivy"/> <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar"/>
