Skip to content

Commit

Permalink
[SUREFIRE-2281] Upgrade to Doxia 2.0.0 GA Stack
Browse files Browse the repository at this point in the history
This closes #794
  • Loading branch information
michael-o committed Oct 20, 2024
1 parent f144b13 commit 60953f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 41 deletions.
4 changes: 2 additions & 2 deletions maven-surefire-report-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</prerequisites>

<properties>
<doxiaVersion>2.0.0-M12</doxiaVersion>
<doxiaVersion>2.0.0</doxiaVersion>
</properties>

<dependencies>
Expand Down Expand Up @@ -114,7 +114,7 @@
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>4.0.0-M15</version>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void executeReport(Locale locale) {
locale,
getConsoleLogger(),
getReportsDirectories(),
constructXrefTestLocation(),
linkXRef ? constructXrefLocation(xrefTestLocation, true) : null,
showSuccess);
r.render();
}
Expand Down Expand Up @@ -256,44 +256,6 @@ private List<MavenProject> getProjectsWithoutRoot() {
return result;
}

private String constructXrefTestLocation() {
String location = null;
if (linkXRef) {
File xrefTestLocation = getXrefTestLocation();

String relativePath = PathTool.getRelativePath(
getReportOutputDirectory().getAbsolutePath(), xrefTestLocation.getAbsolutePath());
if (relativePath == null || relativePath.isEmpty()) {
relativePath = ".";
}
relativePath = relativePath + "/" + xrefTestLocation.getName();
if (xrefTestLocation.exists()) {
// XRef was already generated by manual execution of a lifecycle binding
location = relativePath;
} else {
// Not yet generated - check if the report is on its way
Reporting reporting = project.getModel().getReporting();
List<ReportPlugin> reportPlugins =
reporting != null ? reporting.getPlugins() : Collections.<ReportPlugin>emptyList();
for (ReportPlugin plugin : reportPlugins) {
String artifactId = plugin.getArtifactId();
if ("maven-jxr-plugin".equals(artifactId)) {
location = relativePath;
}
}
}

if (location == null) {
getConsoleLogger().warning("Unable to locate Test Source XRef to link to - DISABLED");
}
}
return location;
}

private File getXrefTestLocation() {
return xrefTestLocation != null ? xrefTestLocation : new File(getReportOutputDirectory(), "xref-test");
}

/**
* @param locale The locale
* @param key The key to search for
Expand Down

0 comments on commit 60953f2

Please sign in to comment.