I initially only had the includes, but I'm getting everything out of the artifact.
Any other suggestions? -----Original Message----- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 1:14 PM To: Maven Users List Subject: RE: maven-dependency-plugin not unpacking properly The plexus archiver component code works like this: return isIncluded( name ) && !isExcluded( name ); So basically the excludes **/* is overriding the includes. Most likely you only want <includes>**/common.properties</includes> --Brian -----Original Message----- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 12:01 PM To: [email protected] Subject: maven-dependency-plugin not unpacking properly Is anyone else able to use the unpack-dependencies plugin goal and specify, say, a single file? <configuration> <excludes>**/*</excludes> <includes>common.properties</includes> I've tried everything I can think of (all kinds of patterens and what not), but this doesn't work at all. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
