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 11:47:04 UTC

[maven-reporting-impl] branch doxia-2.0.0 updated (d8766c1 -> 379cacf)

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


 discard d8766c1  [MSHARED-1059] Upgrade Maven Reporting API to 4.0.0-M1
 discard abd569d  [MSHARED-1058] Upgrade components
 discard d065224  [MSHARED-1057] Upgrade to Doxia/Doxia Sitetools to 2.0.0-M2
 discard 2e19e42  [MSHARED-1055] Upgrade to Java 8
 discard ea2730b  Bump version to 4.0.0-M1
     add 60517dd  [MSHARED-1058] Upgrade components
     new d11bc00  Bump version to 4.0.0-M1
     new 5efe472  [MSHARED-1055] Upgrade to Java 8
     new 38e8f98  [MSHARED-1057] Upgrade to Doxia/Doxia Sitetools to 2.0.0-M2
     new 379cacf  [MSHARED-1059] Upgrade Maven Reporting API to 4.0.0-M1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d8766c1)
            \
             N -- N -- N   refs/heads/doxia-2.0.0 (379cacf)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 4 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.


Summary of changes:


[maven-reporting-impl] 02/04: [MSHARED-1055] Upgrade to Java 8

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

commit 5efe4723c32aa674ff327c467f6bea776b88be83
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 10:22:13 2022 +0200

    [MSHARED-1055] Upgrade to Java 8
---
 pom.xml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 971aadd..72d3c0e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,10 +68,10 @@
   </distributionManagement>
 
   <properties>
+    <javaVersion>8</javaVersion>
     <mavenVersion>3.2.5</mavenVersion>
     <doxiaVersion>1.11.1</doxiaVersion>
     <doxiaSitetoolsVersion>1.11.1</doxiaSitetoolsVersion>
-    <javaVersion>7</javaVersion>
     <project.build.outputTimestamp>2022-02-05T21:36:19Z</project.build.outputTimestamp>
   </properties>
 
@@ -167,8 +167,6 @@
           <properties>
             <maven.compiler.source>${maven.compiler.source}</maven.compiler.source>
             <maven.compiler.target>${maven.compiler.target}</maven.compiler.target>
-            <!-- e.g. ensure that Java7 picks up TLSv1.2 when connecting with Central -->
-            <https.protocols>${https.protocols}</https.protocols>
           </properties>
         </configuration>
         <executions>


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

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

commit 38e8f9850912f846d5efe747fcddbc728873e76a
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 72d3c0e..ee19518 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.
      *


[maven-reporting-impl] 01/04: Bump version to 4.0.0-M1

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

commit d11bc00ee420fcf4a2a71090a84bbc60f537b36e
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 10:19:49 2022 +0200

    Bump version to 4.0.0-M1
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c959d2d..971aadd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.maven.reporting</groupId>
   <artifactId>maven-reporting-impl</artifactId>
-  <version>3.1.1-SNAPSHOT</version>
+  <version>4.0.0-M1-SNAPSHOT</version>
 
   <name>Apache Maven Reporting Implementation</name>
   <description>Abstract classes to manage report generation.</description>


[maven-reporting-impl] 04/04: [MSHARED-1059] Upgrade Maven Reporting API to 4.0.0-M1

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

commit 379cacff3e59a2ca24b8acde8ded7de03ba53d53
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 10:28:34 2022 +0200

    [MSHARED-1059] Upgrade Maven Reporting API to 4.0.0-M1
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index ee19518..6737b75 100644
--- a/pom.xml
+++ b/pom.xml
@@ -79,7 +79,7 @@
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-api</artifactId>
-      <version>3.1.0</version>
+      <version>4.0.0-M1-SNAPSHOT</version>
     </dependency>
 
     <!-- Maven -->