Skip to content

Commit

Permalink
Fix broken Jacoco configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmcpaul committed Nov 19, 2023
1 parent e058976 commit 86e36e4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,12 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<argLine>-Dfile.encoding=UTF-8</argLine>
<failIfNoTests>true</failIfNoTests>
<argLine>${argLine} -Dfile.encoding=UTF-8</argLine>
<systemPropertyVariables>
<failIfNoTests>true</failIfNoTests>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
Expand All @@ -314,7 +317,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>0.8.11</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 86e36e4

Please sign in to comment.