Bootstrap Ivy
-------------
Key: DIRSTUDIO-125
URL: https://issues.apache.org/jira/browse/DIRSTUDIO-125
Project: Directory Studio
Issue Type: Improvement
Affects Versions: 0.8.0
Reporter: Stefan Seelmann
Assignee: Stefan Seelmann
Priority: Minor
Fix For: 0.9.0
We should bootstrap Ivy in the Stuido ant build scripts to prevent
users/developers to install Ivy manually.
There is an example how to bootstrap Ivy in the ApacheConEU2007 presentation
slides: http://incubator.apache.org/ivy/presentations/apache-con-2007/slides.ppt
-----------------------------
<target name="install-ivy" description="--> install ivy">
<mkdir dir="${ivy.jar.dir}"/>
<get src="${ivy.jar.url}"
dest="${ivy.jar.dir}/ivy.jar" usetimestamp="true"/>
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="*.jar"/>
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml"
uri="antlib:org.apache.ivy.ant"
classpathref="ivy.lib.path"/>
</target>
-----------------------------
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.