Hi,
I'm trying to generate a XML report from a jacoco.exec file and it works well with the JaCoCo CLI but I'm unable to do this with the Maven plugin.
This is how I run the JaCoCo CLI:
java -jar lib/jacococli.jar report target/jacoco.exec --classfiles target/classes --xml target/report.xml
As I have under stood it the
dataFile parameter for the Maven plugin is the equivalent of the
execfiles option for the CLI, but what is the Maven plugin equvalent of
--classfiles?
Best regards,
Viktor