You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/12/21 19:47:33 UTC

[maven-surefire] branch fix-report-tests updated: Fixes

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

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


The following commit(s) were added to refs/heads/fix-report-tests by this push:
     new a77713723 Fixes
a77713723 is described below

commit a77713723a4c03b6f8d389181e29774df82c4c11
Author: Michael Osipov <mi...@siemens.com>
AuthorDate: Wed Dec 21 20:37:57 2022 +0100

    Fixes
---
 maven-surefire-report-plugin/pom.xml               | 31 ++++++++++++++++++++++
 .../plugins/surefire/report/Surefire597Test.java   |  2 +-
 2 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/maven-surefire-report-plugin/pom.xml b/maven-surefire-report-plugin/pom.xml
index b48f894dd..486a5b926 100644
--- a/maven-surefire-report-plugin/pom.xml
+++ b/maven-surefire-report-plugin/pom.xml
@@ -48,6 +48,7 @@
 
     <properties>
       <doxiaVersion>1.11.1</doxiaVersion>
+      <aetherVersion>1.0.0.v20140518</aetherVersion>
     </properties>
 
     <dependencies>
@@ -119,6 +120,36 @@
             <artifactId>xmlunit-core</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+          <groupId>org.eclipse.aether</groupId>
+          <artifactId>aether-impl</artifactId>
+          <version>${aetherVersion}</version>
+          <scope>test</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.eclipse.aether</groupId>
+          <artifactId>aether-connector-basic</artifactId>
+          <version>${aetherVersion}</version>
+          <scope>test</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.eclipse.aether</groupId>
+          <artifactId>aether-transport-wagon</artifactId>
+          <version>${aetherVersion}</version>
+          <scope>test</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.maven.wagon</groupId>
+          <artifactId>wagon-http-lightweight</artifactId>
+          <version>3.5.1</version>
+          <scope>test</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-simple</artifactId>
+          <version>1.7.36</version>
+          <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/maven-surefire-report-plugin/src/test/java/org/apache/maven/plugins/surefire/report/Surefire597Test.java b/maven-surefire-report-plugin/src/test/java/org/apache/maven/plugins/surefire/report/Surefire597Test.java
index 389187187..95075a8ef 100644
--- a/maven-surefire-report-plugin/src/test/java/org/apache/maven/plugins/surefire/report/Surefire597Test.java
+++ b/maven-surefire-report-plugin/src/test/java/org/apache/maven/plugins/surefire/report/Surefire597Test.java
@@ -113,7 +113,7 @@ public class Surefire597Test
             "<table border=\"1\" class=\"bodyTable\">\n"
                 + "<tr class=\"a\">\n"
                 + "<td align=\"left\"><figure><img src=\"images/icon_error_sml.gif\" alt=\"\" /></figure></td>\n"
-                + "<td align=\"left\"><a name=\"surefire.MyTest.test\"></a>test</td></tr>\n"
+                + "<td align=\"left\"><a id=\"surefire.MyTest.test\"></a>test</td></tr>\n"
                 + "<tr class=\"b\">\n"
                 + "<td align=\"left\"></td>\n"
                 + "<td align=\"left\">java.lang.RuntimeException: java.lang.IndexOutOfBoundsException: msg</td></tr>\n"