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/04/17 08:28:49 UTC

[maven-reporting-impl] 05/07: [MSHARED-1057] Upgrade to Doxia/Doxia Sitetools to 2.0.0-M2

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-impl.git

commit c358b5185475681fb14e5428cc63d8b79f6efd7a
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 10:25:55 2022 +0200

    [MSHARED-1057] Upgrade to Doxia/Doxia Sitetools to 2.0.0-M2
---
 pom.xml                                                   |  4 ++--
 .../org/apache/maven/reporting/AbstractMavenReport.java   | 15 ---------------
 2 files changed, 2 insertions(+), 17 deletions(-)

diff --git a/pom.xml b/pom.xml
index fa01d54..2a3f744 100644
--- a/pom.xml
+++ b/pom.xml
@@ -70,8 +70,8 @@
   <properties>
     <javaVersion>8</javaVersion>
     <mavenVersion>3.2.5</mavenVersion>
-    <doxiaVersion>1.11.1</doxiaVersion>
-    <doxiaSitetoolsVersion>1.11.1</doxiaSitetoolsVersion>
+    <doxiaVersion>2.0.0-M2</doxiaVersion>
+    <doxiaSitetoolsVersion>2.0.0-M2</doxiaSitetoolsVersion>
     <project.build.outputTimestamp>2022-02-05T21:36:19Z</project.build.outputTimestamp>
   </properties>
 
diff --git a/src/main/java/org/apache/maven/reporting/AbstractMavenReport.java b/src/main/java/org/apache/maven/reporting/AbstractMavenReport.java
index e1279e8..2ef82d9 100644
--- a/src/main/java/org/apache/maven/reporting/AbstractMavenReport.java
+++ b/src/main/java/org/apache/maven/reporting/AbstractMavenReport.java
@@ -180,21 +180,6 @@ public abstract class AbstractMavenReport
         return templateProperties;
     }
 
-    /**
-     * Generate a report.
-     *
-     * @param sink the sink to use for the generation.
-     * @param locale the wanted locale to generate the report, could be null.
-     * @throws MavenReportException if any
-     * @deprecated use {@link #generate(Sink, SinkFactory, Locale)} instead.
-     */
-    @Deprecated
-    public void generate( org.codehaus.doxia.sink.Sink sink, Locale locale )
-        throws MavenReportException
-    {
-        generate( sink, null, locale );
-    }
-
     /**
      * Generate a report.
      *