Skip to content

Commit

Permalink
Fix surefire/jacoco configuration bug
Browse files Browse the repository at this point in the history
  • Loading branch information
eputtone committed Oct 3, 2024
1 parent d49b381 commit 3c76293
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire.version}</version>
<configuration>
<argLine>@{jacocoArgLine}</argLine>
<includes>
<include>**/*Test.java</include>
</includes>
Expand All @@ -222,7 +221,7 @@
<threadCount>1</threadCount>
<forkCount>${surefire.forkcount}</forkCount>
<!-- workaround for buggy cxf implementation on top of the "new" java async http client -->
<argLine>-Dorg.apache.cxf.transport.http.forceURLConnection=true</argLine>
<argLine>@{jacocoArgLine} -Dorg.apache.cxf.transport.http.forceURLConnection=true</argLine>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 3c76293

Please sign in to comment.