Skip to content

Commit

Permalink
chore(jacoco): fix wrongly typed config options of JaCoCo Maven plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
poikilotherm committed Feb 7, 2022
1 parent 1db3e08 commit 96bf1bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -877,8 +877,8 @@
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<configuration>
<destfile>${basedir}/target/coverage-reports/jacoco-unit.exec</destfile>
<datafile>${basedir}/target/coverage-reports/jacoco-unit.exec</datafile>
<destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile>
<dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 96bf1bd

Please sign in to comment.