Re: How to download/package all versions of artifact

2015-11-30 Thread Ron Wheeler
So these are not project dependencies since only 1 version is allowed as a dependency and are not on the classpath since only 1 version is used there as well. As I read your description, you want to include a bunch of jars in a resource folder that is not on the classpath of the assembled

How to download/package all versions of artifact

2015-11-30 Thread David Hoffer
I have a use case where I want to include in a subfolder of my assembled zip all of the versions of a particular artifact (or even better all within a range of versions). What's the best way to do this? -Dave

Re: How to download/package all versions of artifact

2015-11-30 Thread David Hoffer
Yeah that is what I ended up doing but would rather have gotten the files from Maven at build time instead of just adding manually to SVN...just feels wrong...plus what I really would like is the ability to get later jars every time the build runs if any new ones exist. I know it might seem like

Re: How to download/package all versions of artifact

2015-11-30 Thread Stephen Connolly
Bind dependency:copy to an execution and just specify all the artifactItems in the execution. On Monday 30 November 2015, David Hoffer wrote: > Yeah that is what I ended up doing but would rather have gotten the files > from Maven at build time instead of just adding

Re: How to download/package all versions of artifact

2015-11-30 Thread David Hoffer
Is there a way to specify all versions somehow? There are about 20+ versions so would be a pretty long list if I have to do them individually. -Dave On Mon, Nov 30, 2015 at 3:39 PM, Stephen Connolly < stephen.alan.conno...@gmail.com> wrote: > Bind dependency:copy to an execution and just