Re: input artifacts to plugin

2013-07-17 Thread Russell Gold
; > > Best regards, > > Richard > > -Original Message- > From: Russell Gold [mailto:r...@gold-family.us] > Sent: Saturday, July 13, 2013 10:28 PM > To: Maven Users List > Subject: Re: input artifacts to plugin > > HI Richard, >

RE: input artifacts to plugin

2013-07-16 Thread Richard Sand
en Users List Subject: Re: input artifacts to plugin HI Richard, What do you want to do? If all you want is the compile dependencies: 1. Configure the plugin to require compile and runtime dependency resolution: @Mojo( ... requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME

Re: input artifacts to plugin

2013-07-13 Thread Russell Gold
HI Richard, What do you want to do? If all you want is the compile dependencies: 1. Configure the plugin to require compile and runtime dependency resolution: @Mojo( ... requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME) 2. Specify a parameter configured to receive project.com

input artifacts to plugin

2013-07-12 Thread Richard Sand
Hi all - another hopefully simple question: Can I add a custom configuration property to my plugin which takes in the normal .. for the build, I'd have a @Property Set which maven will still resolve & manage but specifically for use by the plugin. As a sample, this is what I want to put into