Bootstrapping ivy instruction
-----------------------------
Key: IVY-869
URL: https://issues.apache.org/jira/browse/IVY-869
Project: Ivy
Issue Type: Improvement
Affects Versions: 2.0.0-beta-2
Reporter: Stepan Koltsov
I use following code to bootstrap ivy:
{code}
<available property="ivy.available" file="lib/ivy/ivy-2.0.0-beta2.jar"/>
<target name="download-ivy" unless="ivy.available">
<mkdir dir="lib/ivy"/>
<echo>Downloading ivy</echo>
<get
src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/2.0.0-beta2/ivy-2.0.0-beta2.jar"
dest="lib/ivy/ivy-2.0.0-beta2.jar"/>
</target>
{code}
This should be possibly included into the documentation.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.