Is there a way when downloading a jar specified in ivy.xml to force that jar to be downloaded "without" downloading any of the dependent jars, for example:
<dependencies>
<dependency org="org.apache.something" name="name-of-jar" rev="1.0.0"
dependent="false" />
</dependencies>
where dependent = false do not download any dependent jars
dependent = true (default) download dependent jars also
Thanks in advance or any help on this or what work-arounds there might be.
