RE: maven-dependency-plugin unpack to different folder?

2010-01-20 Thread subir.sasikumar
. Subir -Original Message- From: David Hoffer [mailto:dhoff...@gmail.com] Sent: Thursday, January 21, 2010 1:40 AM To: Maven Users List Subject: maven-dependency-plugin unpack to different folder? Using the maven

Re: maven-dependency-plugin unpack to different folder?

2010-01-20 Thread Wayne Fay
> its going to include the foo/bar folder. How can I get rid of this? I don't know if this will work, but worth a try: ${project.build.directory}/classes/foo/bar           config.txt Wayne - To unsubscribe, e-mail: users-unsu

Re: maven-dependency-plugin unpack to different folder?

2010-01-20 Thread Dan Tran
you need to make 2 executions, one to unpack and one to the move thru ant run -D On Wed, Jan 20, 2010 at 12:38 PM, David Hoffer wrote: > Right but how can I flatten or remove the folder from the artifactItem?  For > example if I say > > >                                    ... > > ${project.buil

Re: maven-dependency-plugin unpack to different folder?

2010-01-20 Thread David Hoffer
Right but how can I flatten or remove the folder from the artifactItem? For example if I say ... ${project.build.directory}/classes foo/bar/config.txt its going to include the foo/bar folder. How can I get rid of this?

Re: maven-dependency-plugin unpack to different folder?

2010-01-20 Thread Dan Tran
for unpack goal, you can specify outputDirectory per artitfactItem configuration. -Dan On Wed, Jan 20, 2010 at 12:09 PM, David Hoffer wrote: > Using the maven-dependency-plugin is there a way to unpack to a different > folder?  I.e. if I have a resource at /foo/bar/config.txt can I configure to

maven-dependency-plugin unpack to different folder?

2010-01-20 Thread David Hoffer
Using the maven-dependency-plugin is there a way to unpack to a different folder? I.e. if I have a resource at /foo/bar/config.txt can I configure to unpack at /props/config.txt? -Dave