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]
> >
> >
>

Reply via email to