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 3, 2022
1 parent e8ce58d commit 72d57c1
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 @@ -866,8 +866,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 72d57c1

Please sign in to comment.