Skip to content

Commit

Permalink
* Added JaCoCo option to include classes from the bootstrap classload…
Browse files Browse the repository at this point in the history
…er if JCL coverage is included
  • Loading branch information
katherine-hough committed Oct 23, 2023
1 parent 2abfd84 commit 0479641
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ public String getJacocoOption() {
if (!includeString.isEmpty()) {
opt += ",includes=" + includeString;
}
if (javaExecutable != null) {
opt += ",inclbootstrapclasses=true";
}
return opt;
}

Expand Down

0 comments on commit 0479641

Please sign in to comment.