Running jacoco check goal with maven 3.5
问题 My jacoco plugin configuration in a pom likes below <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.5.201505241946</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${jacoco.ut.execution.data.file}</destFile> </configuration> </execution> <execution> <id>merge-execs</id> <phase>pre-site</phase> <inherited>false</inherited> <goals> <goal>merge</goal> </goals>