Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Multiple testclass invocations per plugin

Hi,

I support Bidon's answer.
About the "execution" tag, it's not specific to Surefire but to the Maven POM model, which allows multiple execution of any Maven plugin. So you'll have to find plain Maven documentation for details about how parameters are passed and/or overridden through the multiple "configuration" blocks.
A small tip I think is worth mentioning right away is to use `mvn help:effective-pom` to see how the pom file is extended and see a "verbose" view of your pom file which should help to disambiguate some settings.

HTH

Back to the top