This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/master by this push:
     new 805f6b74a Improve internal field order
805f6b74a is described below

commit 805f6b74a0e7fa890ae2e55f2f4bdfed3e52310b
Author: Michael Osipov <micha...@apache.org>
AuthorDate: Wed Jul 10 22:54:33 2024 +0200

    Improve internal field order
---
 .../plugins/surefire/report/AbstractSurefireReportMojo.java  | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReportMojo.java
 
b/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReportMojo.java
index c4234e4a7..ad0b22dea 100644
--- 
a/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReportMojo.java
+++ 
b/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReportMojo.java
@@ -83,12 +83,6 @@ public abstract class AbstractSurefireReportMojo extends 
AbstractMavenReport {
     @Parameter(defaultValue = "${reactorProjects}", readonly = true)
     private List<MavenProject> reactorProjects;
 
-    /**
-     * Location of the Xrefs to link.
-     */
-    @Parameter(defaultValue = "${project.reporting.outputDirectory}/xref-test")
-    private File xrefLocation;
-
     /**
      * Link the failed tests line numbers to the source xref. Will link
      * automatically if Maven JXR plugin is being used.
@@ -96,6 +90,12 @@ public abstract class AbstractSurefireReportMojo extends 
AbstractMavenReport {
     @Parameter(defaultValue = "true", property = "linkXRef")
     private boolean linkXRef;
 
+    /**
+     * Location of the Xrefs to link.
+     */
+    @Parameter(defaultValue = "${project.reporting.outputDirectory}/xref-test")
+    private File xrefLocation;
+
     /**
      * Whether to build an aggregated report at the root, or build individual 
reports.
      */

Reply via email to