Skip to content

Commit

Permalink
Consistently use MavenReport#getReportOutputDirectory()
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Nov 14, 2023
1 parent e6d26e9 commit c0ac09b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ protected String constructXRefLocation(boolean test) {
File xrefLoc = test ? xrefTestLocation : xrefLocation;

String relativePath =
PathTool.getRelativePath(outputDirectory.getAbsolutePath(), xrefLoc.getAbsolutePath());
PathTool.getRelativePath(getReportOutputDirectory().getAbsolutePath(), xrefLoc.getAbsolutePath());
if (relativePath == null || relativePath.isEmpty()) {
relativePath = ".";
}
Expand Down

0 comments on commit c0ac09b

Please sign in to comment.