<j:forEach var="lib" items="${pom.artifacts}">
<j:set var="dep" value="${lib.dependency}"/>
<ant:copy todir="${basedir}/tmp" file="${lib.path}"/>
</j:forEach>
Can you use that?
--Mel
On 1/18/07, Beagan, Patrick <[EMAIL PROTECTED]> wrote:
I'm have a project that has a few dependencies. This works great for
the compile phase but for my packaging phase, I've created
an ant task that packages up all my files locally in a zip to be
distributed. I need to copy my dependencies (jars) from the remote
repository to a local directory so I can include them in my zip. How
do I do this? Thanks.