Skipping Jacoco execution

0 votes
asked Oct 6, 2017 in SWSV by gabe (22 points)  

When I run mvn verify as the instruction says for Lab02 it runs without an error and it sais: Skipping JaCoCo execution due to missing execution data file.

I've tried everything even when I clone it and after that I get the same (on the "clean" project).

I have no idea what to do...Stackoverflow didn't help.

commented Oct 7, 2017 by micskeiz (2,873 points)  
- Are you working on the `hu.bme.mit.swsv.cache`?
- What is your environment:
 - OS
 - Maven version
 - Java version

Can you post the full output of `mvn verify`?

1 Answer

0 votes
answered Oct 12, 2019 by OMMHOA (25 points)  

I know it's quite old but we happened to run into the same issue. The correct way of importing jacoco plugin can be seen in src/swsv-ris/pom.xml

You can generate a report to target/site/jacoco/... if you run
mvn clean test jacoco:report

...