Hi Torsten,

The best known of the undocumented tags:

<project ... xmlns:deploy="deploy">
...
<deploy:copy-deps todir="${basedir}/foo" />
...

The other alternative is to loop over ${pom.artifacts} (which is what
that tag does).

If you just want specific ones, use:

${pom.getDependencyPath('groupId:artifactId')}

to get the path of the dependency.

HTH,
Brett

On 6/21/05, Torsten Curdt <[EMAIL PROTECTED]> wrote:
> Guys,
> 
> we have a maven.xml defining some pre/post goals.
> Now this also requires to copy some of the
> dependencies to some non-standard location.
> 
> Something similar to
> 
>  <copy file="pom.artifactid" to="mylocation"/>
> 
> Anyone a hint?
> 
> cheers
> --
> Torsten
> 
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to