Code Coverage using Ant Example

Hi,

Your Ant file didn’t come through with any indention, which makes it terribly hard to read. However, my eye did happen to land on this:

<!--  Step 3: Create coverage report  -->
<jacoco:report>
<!--  This task needs the collected execution data and ...  -->
<executiondata>
<file file="${result.exec.file}"/>

So… I guess you’re producing an .exec coverage report? We no longer support that format. You need to create an .xml report instead and update the parameter key.

 
HTH,
Ann