On Tuesday, March 19, 2019 at 4:31:04 PM UTC+1, [email protected] wrote:
> Is this option exposed in the jacoco maven plugin? All configuration parameters are listed in documentation - https://www.jacoco.org/jacoco/trunk/doc/report-mojo.html Furthermore all source code of jacoco-maven-plugin is also available - https://github.com/jacoco/jacoco/tree/master/jacoco-maven-plugin Is there any way to force the creation of a jacoco.exec file that just says > there were no lines covered at all? > Just create literally empty "jacoco.exec" file. Or even simpler - just create literally empty test, so that it will be executed and "jacoco.exec" will be created for you: public class FakeTest { @org.junit.Test public void empty() { } } -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/d47933b4-9d06-4b39-a58e-f920f26b533a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
