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/01/24 10:25:41 UTC

[maven-reporting-api] branch MSHARED-1024 created (now fab1102)

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

michaelo pushed a change to branch MSHARED-1024
in repository https://gitbox.apache.org/repos/asf/maven-reporting-api.git.


      at fab1102  [MSHARED-1024] Replace deprecated code

This branch includes the following new commits:

     new fab1102  [MSHARED-1024] Replace deprecated code

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[maven-reporting-api] 01/01: [MSHARED-1024] Replace deprecated code

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MSHARED-1024
in repository https://gitbox.apache.org/repos/asf/maven-reporting-api.git

commit fab110256055442c1817f2b4cb1113be647a3aed
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Mon Jan 24 11:25:22 2022 +0100

    [MSHARED-1024] Replace deprecated code
    
    This closes #2
---
 src/main/java/org/apache/maven/reporting/MavenReport.java | 4 ++--
 src/main/resources/default-report.xml                     | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/maven/reporting/MavenReport.java b/src/main/java/org/apache/maven/reporting/MavenReport.java
index 0ca6086..52d8e47 100644
--- a/src/main/java/org/apache/maven/reporting/MavenReport.java
+++ b/src/main/java/org/apache/maven/reporting/MavenReport.java
@@ -19,11 +19,11 @@ package org.apache.maven.reporting;
  * under the License.
  */
 
-import org.codehaus.doxia.sink.Sink;
-
 import java.io.File;
 import java.util.Locale;
 
+import org.apache.maven.doxia.sink.Sink;
+
 /**
  * The basis for a Maven report.
  *
diff --git a/src/main/resources/default-report.xml b/src/main/resources/default-report.xml
index dde8d0d..7b4ecd1 100644
--- a/src/main/resources/default-report.xml
+++ b/src/main/resources/default-report.xml
@@ -20,6 +20,6 @@ under the License.
 
 <project name="${project.name}">
   <body>
-    ${reports}
+    <menu ref="reports"/>
   </body>
 </project>