Repository: ant-ivy Updated Branches: refs/heads/master 96dc851ea -> feb3c17f1
Fix the build of tutorials Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/feb3c17f Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/feb3c17f Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/feb3c17f Branch: refs/heads/master Commit: feb3c17f1c541f5dc75496cffb3020c6c51ea375 Parents: 96dc851 Author: Jaikiran Pai <[email protected]> Authored: Thu Jun 15 18:31:05 2017 +0530 Committer: Jaikiran Pai <[email protected]> Committed: Sun Jun 18 10:01:42 2017 +0530 ---------------------------------------------------------------------- src/example/dual/project/build.xml | 2 +- src/example/hello-ivy/build.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/feb3c17f/src/example/dual/project/build.xml ---------------------------------------------------------------------- diff --git a/src/example/dual/project/build.xml b/src/example/dual/project/build.xml index 6ef4b91..89d5d27 100644 --- a/src/example/dual/project/build.xml +++ b/src/example/dual/project/build.xml @@ -56,7 +56,7 @@ <target name="run" depends="resolve" description="--> compile and run the project"> <mkdir dir="${build.dir}"/> <javac srcdir="${src.dir}" destdir="${build.dir}" classpathref="lib.path.id" includeAntRuntime="false"/> - <java classpathref="run.path.id" classname="example.Hello"/> + <java classpathref="run.path.id" classname="example.HelloIvy"/> </target> <!-- ================================= http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/feb3c17f/src/example/hello-ivy/build.xml ---------------------------------------------------------------------- diff --git a/src/example/hello-ivy/build.xml b/src/example/hello-ivy/build.xml index 64a5743..5ff31e4 100644 --- a/src/example/hello-ivy/build.xml +++ b/src/example/hello-ivy/build.xml @@ -52,7 +52,7 @@ <mkdir dir="${build.dir}"/> <javac srcdir="${src.dir}" destdir="${build.dir}" classpathref="lib.path.id" includeAntRuntime="false"/> <property name="msg" value="hello ivy !"/> - <java classpathref="run.path.id" classname="example.Hello"> + <java classpathref="run.path.id" classname="example.HelloConsole"> <arg value="-message"/> <arg value="${msg}"/> </java>
