Jcoco exce check goal error - Analyzed bundle 'jacoco-merge' with 0 classes

807 Views Asked by At

I wanted to run jacoco-check goal in multi module project. The issue I am having is, even after setting the dataFile location it couldn't find the file.

After implementing the jacoco-merge with multi module project I am able to generate the merge jacoco.exec file in

main-project\target\jacoco.exec

I have below code for the jacoco-check

            <plugins>
                <plugin>
                    <groupId>org.jacoco</groupId>
                    <artifactId>jacoco-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>merge-results</id>
                            <goals>
                                <goal>merge</goal>
                            </goals>
                            <configuration>
                                <destFile>${user.dir}/target/jacoco.exec</destFile>
                                <fileSets>
                                    <fileSet>
                                        <!-- This is where the individual builds put results -->
                                        <directory>${user.dir}/target/jacoco</directory>
                                        <includes>
                                            <include>*.exec</include>
                                        </includes>
                                    </fileSet>
                                </fileSets>
                            </configuration>
                            <phase>verify</phase>
                        </execution>
                        <execution>
                            <id>post-merge-report</id>
                            <phase>verify</phase>
                            <goals>
                                <goal>report</goal>
                            </goals>
                            <configuration>
                                <dataFile>${user.dir}/target/jacoco.exec</dataFile>
                                <outputDirectory>${user.dir}/target/coverage-reports</outputDirectory>
                            </configuration>
                        </execution>
                        <execution>
                            <id>jacoco-check</id>
                            <phase>verify</phase>
                            <goals>
                                <goal>check</goal>
                            </goals>
                            <configuration>
                              <dataFile>${user.dir}/target/jacoco.exec</dataFile>
                                <rules>
                                    <rule>
                                        <limits>
                                            <limit>
                                                <counter>LINE</counter>
                                                <value>COVEREDRATIO</value>
                                                <minimum>80%</minimum>
                                            </limit>
                                        </limits>
                                    </rule>
                                </rules>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>

But after running mvn verify I see below error in the logs relating to check goals

[INFO] --- jacoco-maven-plugin:0.8.3:merge (merge-results) @ jacoco-merge ---
    [INFO] Loading execution data file c:main-project\target\jacoco\module1.exec
    [INFO] Loading execution data file c:main-project\target\jacoco\module2.exec
    [INFO] Writing merged execution data to c:main-project\target\jacoco.exec
.....
    [INFO] Loading execution data file c:main-project\jacoco-merge\target\jacoco.exec
    [INFO] --- jacoco-maven-plugin:0.8.3:check (jacoco-check) @ jacoco-merge ---
[INFO] Analyzed bundle 'jacoco-merge' with 0 classes
0

There are 0 best solutions below