Skip to content

Commit

Permalink
Fix jacoco merger
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Dec 6, 2024
1 parent 10033bf commit 609d867
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public static void main(String[] args) throws Exception {
System.arraycopy(classes, 0, reportArgs, execs.length + 1, classes.length);
System.arraycopy(sources, 0, reportArgs, execs.length + classes.length + 1, sources.length);
reportArgs[execs.length + classes.length + sources.length + 1] = "--xml";
reportArgs[execs.length + classes.length + sources.length + 2] = basePath + File.separator + "target" + File.separator + "report.xml";
reportArgs[execs.length + classes.length + sources.length + 2] = classFile.getAbsolutePath() + File.separator + "target" + File.separator + "report.xml";
reportArgs[execs.length + classes.length + sources.length + 3] = "--html";
reportArgs[execs.length + classes.length + sources.length + 4] = basePath + File.separator + "target" + File.separator + "site";
reportArgs[execs.length + classes.length + sources.length + 4] = classFile.getAbsolutePath() + File.separator + "target" + File.separator + "site";

PrintWriter out = new PrintWriter(System.out, true);
PrintWriter err = new PrintWriter(System.err, true);
Expand Down

0 comments on commit 609d867

Please sign in to comment.