Skip to content

Commit 805f6b7

Browse files
committed
Improve internal field order
1 parent 26ae10d commit 805f6b7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReportMojo.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -83,19 +83,19 @@ public abstract class AbstractSurefireReportMojo extends AbstractMavenReport {
8383
@Parameter(defaultValue = "${reactorProjects}", readonly = true)
8484
private List<MavenProject> reactorProjects;
8585

86-
/**
87-
* Location of the Xrefs to link.
88-
*/
89-
@Parameter(defaultValue = "${project.reporting.outputDirectory}/xref-test")
90-
private File xrefLocation;
91-
9286
/**
9387
* Link the failed tests line numbers to the source xref. Will link
9488
* automatically if Maven JXR plugin is being used.
9589
*/
9690
@Parameter(defaultValue = "true", property = "linkXRef")
9791
private boolean linkXRef;
9892

93+
/**
94+
* Location of the Xrefs to link.
95+
*/
96+
@Parameter(defaultValue = "${project.reporting.outputDirectory}/xref-test")
97+
private File xrefLocation;
98+
9999
/**
100100
* Whether to build an aggregated report at the root, or build individual reports.
101101
*/

0 commit comments

Comments
 (0)