Skip to content

Commit 61e347b

Browse files
committed
Fix JaCoCo report generation
1 parent 738d8ed commit 61e347b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ file comparators, endian transformation classes, and much more.
136136
<japicmp.skip>false</japicmp.skip>
137137
<commons.release.isDistModule>true</commons.release.isDistModule>
138138
<!-- JaCoCo: Don't make code coverage worse than: -->
139-
<jacoco.skip>${env.JACOCO_SKIP}</jacoco.skip>
140139
<commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure>
141140
<commons.jacoco.classRatio>0.98</commons.jacoco.classRatio>
142141
<commons.jacoco.instructionRatio>0.90</commons.jacoco.instructionRatio>
@@ -205,7 +204,7 @@ file comparators, endian transformation classes, and much more.
205204
<reuseForks>false</reuseForks>
206205
<!-- Limit memory size see IO-161 -->
207206
<!-- Mockito inline may need -XX:+EnableDynamicAgentLoading -->
208-
<argLine>${argLine} -Xmx25M ${EnableDynamicAgentLoading}</argLine>
207+
<argLine>@{argLine} -Xmx25M ${EnableDynamicAgentLoading}</argLine>
209208
<includes>
210209
<!-- Only include test classes, not test data -->
211210
<include>**/*Test*.class</include>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ The <action> type attribute can be add,update,fix,remove.
6868
<action type="fix" dev="ggregory" due-to="Gary Gregory">BOMInputStream fail-fast and tracks its ByteOrderMark as a final #835.</action>
6969
<action type="fix" dev="ggregory" due-to="Gary Gregory">Refactor UnixLineEndingInputStream and WindowsLineEndingInputStream for duplication.</action>
7070
<action type="fix" dev="ggregory" due-to="Peter De Maeyer, Gary Gregory" issue="IO-857">[Javadoc] PathUtils.cleanDirectory() methods vs FileUtils.</action>
71+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix JaCoCo report generation.</action>
7172
<!-- ADD -->
7273
<action type="add" dev="ggregory" due-to="Gary Gregory, Piotr P. Karwasz">Add and use IOUtils.closeQuietlySuppress(Closeable, Throwable) #818.</action>
7374
<action type="add" dev="ggregory" due-to="Gary Gregory">Add ProxyWriter.setReference(Writer).</action>

0 commit comments

Comments
 (0)