vert-x3 / vertx-parent

The base parent pom for Vert.x projects
Apache License 2.0
8 stars 17 forks source link

Allow `argLine` injection in surefire command line #5

Closed cescoffier closed 9 years ago

cescoffier commented 9 years ago

The maven jacoco plugin requires a slightly different configuration of the surefire plugin to inject the Jacoco Agent attachment.

The following configuration should be ok:

<argLine>${argLine} -server -Xmx1200M</argLine>

Then, jacoco compute it's own argLine prepended to the surefire configuration.

For information, this will let us compute test coverage.

cescoffier commented 9 years ago

This is not required for the 3.0 release. It just prepares the code coverage support.