We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In pom.xml, the JaCoCo plugin is configured like this:
<configuration> <destfile>${basedir}/target/coverage-reports/jacoco-unit.exec</destfile> <datafile>${basedir}/target/coverage-reports/jacoco-unit.exec</datafile> </configuration>
Whereas it should be:
<configuration> <destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile> <dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile> </configuration>
According to the plugin configuration:
http://www.eclemma.org/jacoco/trunk/doc/dump-mojo.html#destFile
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In pom.xml, the JaCoCo plugin is configured like this:
Whereas it should be:
According to the plugin configuration:
http://www.eclemma.org/jacoco/trunk/doc/dump-mojo.html#destFile
The text was updated successfully, but these errors were encountered: