Repository: ant-easyant-buildtypes Updated Branches: refs/heads/master 57afde3ab -> d3ea7c894
EASYANT-73 Plugins release script does not work (thanks to Jérôme Leroux) Project: http://git-wip-us.apache.org/repos/asf/ant-easyant-buildtypes/repo Commit: http://git-wip-us.apache.org/repos/asf/ant-easyant-buildtypes/commit/d3ea7c89 Tree: http://git-wip-us.apache.org/repos/asf/ant-easyant-buildtypes/tree/d3ea7c89 Diff: http://git-wip-us.apache.org/repos/asf/ant-easyant-buildtypes/diff/d3ea7c89 Branch: refs/heads/master Commit: d3ea7c89416a29a6f7a1bde65f4d284b6b125ef6 Parents: 57afde3 Author: Jean-Louis Boudart <[email protected]> Authored: Fri Feb 6 20:14:27 2015 +0100 Committer: Jean-Louis Boudart <[email protected]> Committed: Fri Feb 6 20:17:07 2015 +0100 ---------------------------------------------------------------------- build.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant-easyant-buildtypes/blob/d3ea7c89/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 9950d31..d12df43 100644 --- a/build.xml +++ b/build.xml @@ -26,8 +26,9 @@ <get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/ivy-${ivy.version}.jar" dest="${user.home}/.ivy2/jars/ivy-${ivy.version}.jar" usetimestamp="true"/> <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpath="${user.home}/.ivy2/jars/ivy-${ivy.version}.jar" /> - <get src="http://repo1.maven.org/maven2/ant-contrib/ant-contrib/20020829/ant-contrib-20020829.jar" dest="${user.home}/.ant/jars/ant-contrib-20020829.jar" usetimestamp="true" /> - <taskdef resource="net/sf/antcontrib/antcontrib.properties" uri="antlib:net.sf.antcontrib" classpath="${user.home}/.ant/jars/ant-contrib-20020829.jar" /> + <mkdir dir="${user.home}/.ant/jars/"/> + <get src="http://repo1.maven.org/maven2/ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar" dest="${user.home}/.ant/jars/ant-contrib-1.0b3.jar" usetimestamp="true" /> + <taskdef resource="net/sf/antcontrib/antcontrib.properties" uri="antlib:net.sf.antcontrib" classpath="${user.home}/.ant/jars/ant-contrib-1.0b3.jar" /> </target> <target name="clean-shared-repo">
