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/23 18:59:03 UTC

[maven-reporting-api] branch doxia-2.0.0 created (now 84083e9)

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

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


      at 84083e9  Prepare for Doxia 2.0.0

This branch includes the following new commits:

     new 84083e9  Prepare for Doxia 2.0.0

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: Prepare for Doxia 2.0.0

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

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

commit 84083e907ac24b4dc51358d0a3979d72430dda53
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Jan 23 19:58:50 2022 +0100

    Prepare for Doxia 2.0.0
---
 pom.xml                                                   | 8 +-------
 src/main/java/org/apache/maven/reporting/MavenReport.java | 4 ++--
 src/main/resources/default-report.xml                     | 2 +-
 3 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/pom.xml b/pom.xml
index d464fad..33fec6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,13 +94,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-sink-api</artifactId>
-      <version>1.11.1</version>
-      <exclusions>
-        <exclusion>
-          <artifactId>plexus-container-default</artifactId>
-          <groupId>org.codehaus.plexus</groupId>
-        </exclusion>
-      </exclusions>
+      <version>2.0.0-M1</version>
     </dependency>
   </dependencies>
 </project>
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>