that's a part of my build.xml
<property name="dir.ivy" value="${user.home}/.ivy2" description="Local Ivy Repository" />
<target name="retrieve" depends="clean,init">
<!-- Resolve dependencies -->
<ivy:resolve file="ivy.xml"/>
<ivy:retrieve type="jar" conf="${ivy.configuration}" pattern="${dir.ivy}/[artifact]-[revision].[ext]"/>
<!-- Update classpath -->
???
</target>
After i downloaded the dependencies, defined in my ivy.xml, from artifactory or maven i would like to add them to my project classpath without adding them manually from Project - Configure Build Path... and without compiling my classes.
Any ideas?