Nope no feature request. It would be rejected. If you regularly need to tweak config of something, it is up to you to prepare your poms before hand to allow for such tweaking by binding properties to the <configuration> elements that you want to tweak and providing the sensible defaults that you need.
The feature is actually there... but it is against the spirit of the Maven way, hence you need to work by typing out xml to pay the penance for straying from the Maven way ;-) On 17 December 2013 09:17, Matej Lazar <[email protected]> wrote: > > Working on productization we want to avoid code (also pom) changing, > but often we have to change some plugin property (tesets, source packing, > ...) > being able to change it via external property would be useful. > > Should I file a feature request? Under which component? > > Thanks, > Matej. > > > On 12/16/2013 09:54 PM, Stephen Connolly wrote: > > not without changing the pom. > > > > You could set each module to have its own configuration for the skip > > property, e.g. > > > > <properties> > > <maven.test.skip>${foobar.test.skip}</maven.test.skip> > > <foobar.test.skip>false</foobar.test.skip> > > </properties> > > > > the above in module foobar, in module barfoo you'd have > > > > <properties> > > <maven.test.skip>${barfoo.test.skip}</maven.test.skip> > > <barfoo.test.skip>false</barfoo.test.skip> > > </properties> > > > > And then you can get what you think you want... > > > > Spread this over 10 modules and you'll quickly realise that this is not > the > > solution you want > > > > > > On 16 December 2013 20:30, Anders Hammar <[email protected]> wrote: > > > >> No. > >> > >> /Anders (mobile) > >> Den 16 dec 2013 18:38 skrev "Matej Lazar" <[email protected]>: > >> > >>> Hi, > >>> > >>> Is there a way to set user property via command line for a specific > >> module. > >>> I would like to use something like: > >>> mvn clean instrall -Dgroup-id.artifact-id.maven.test.skip=true > >>> > >>> > >>> Thanks, > >>> Matej. > >>> > >>> --------------------------------------------------------------------- > >>> 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] > >
