RE: maven-dependency-plugin copy-dependencies

2009-01-08 Thread Brian E. Fox
o the mojo. -Original Message- From: Jeff MAURY [mailto:jeffma...@gmail.com] Sent: Thursday, January 08, 2009 4:33 AM To: Maven Users List Subject: Re: maven-dependency-plugin copy-dependencies Because you bound it to the phase package, you should use mvn clean package instead. I think Maven

Re: maven-dependency-plugin copy-dependencies

2009-01-08 Thread Ryan Moquin
Sorry, I forgot this is a "reply all list". I thought that the part before the colon could be considered a phase. I guess I shouldn't assume.that. I tried it that way and didn't think it worked, but I'll give it another shot in case when trying the different combinations I didn't try that one li

Re: maven-dependency-plugin copy-dependencies

2009-01-08 Thread Jeff MAURY
I don't think because dependency is not a Maven standard phase !!! I suggest that you modify your POM so that the configuration parameters are independent of the phase and goals: org.apache.maven.plugins maven-dependency-plugin zip jar

Re: maven-dependency-plugin copy-dependencies

2009-01-08 Thread Ryan Moquin
That's what I figured, I couldn't see how it would work this way, I think this page made me think that you would use dependency:copy-dependencies to invoke it: http://maven.apache.org/plugins/maven-dependency-plugin/examples/copying-project-dependencies.html So, if I changed it to dependency, rat

Re: maven-dependency-plugin copy-dependencies

2009-01-08 Thread Jeff MAURY
Because you bound it to the phase package, you should use mvn clean package instead. I think Maven will not pick up your configuration if your run mvn clean dependency:copy-dependencies Regards Jeff On Wed, Jan 7, 2009 at 7:16 PM, Ryan Moquin wrote: > I'm trying to understand how to use the co