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/07/01 16:38:22 UTC

[maven-reporting-api] branch master updated (fcc45aa -> 2c44e19)

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

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


    from fcc45aa  [maven-release-plugin] prepare for next development iteration
     new 2d7a70e  [MSHARED-1091] Upgrade Maven Parent to 36 and Maven to 3.2.5
     new 2c44e19  [MSHARED-1092] Upgrade to Doxia 2.0.0-M3

The 2 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:
 pom.xml                                            | 22 +++-------------------
 .../maven/reporting/MavenMultiPageReport.java      |  1 +
 2 files changed, 4 insertions(+), 19 deletions(-)


[maven-reporting-api] 01/02: [MSHARED-1091] Upgrade Maven Parent to 36 and Maven to 3.2.5

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

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

commit 2d7a70e9ce5e2aae5d2a27664735bb7d4ce35535
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Fri Jul 1 18:36:41 2022 +0200

    [MSHARED-1091] Upgrade Maven Parent to 36 and Maven to 3.2.5
---
 pom.xml | 20 ++------------------
 1 file changed, 2 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4ddfec3..53b16df 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.shared</groupId>
     <artifactId>maven-shared-components</artifactId>
-    <version>34</version>
+    <version>36</version>
     <relativePath />
   </parent>
 
@@ -71,26 +71,10 @@ under the License.
 
   <properties>
     <javaVersion>8</javaVersion>
+    <mavenVersion>3.2.5</mavenVersion>
     <project.build.outputTimestamp>2022-04-17T16:19:42Z</project.build.outputTimestamp>
   </properties>
 
-  <build>
-    <!-- TODO Remove when updating to Parent 26 -->
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-javadoc-plugin</artifactId>
-          <version>3.3.2</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-project-info-reports-plugin</artifactId>
-          <version>3.2.2</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-  </build>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>


[maven-reporting-api] 02/02: [MSHARED-1092] Upgrade to Doxia 2.0.0-M3

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

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

commit 2c44e1914ffaaf5fa072d1d6f716ef095a301d71
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Fri Jul 1 18:37:00 2022 +0200

    [MSHARED-1092] Upgrade to Doxia 2.0.0-M3
---
 pom.xml                                                            | 2 +-
 src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 53b16df..55ccc5b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -79,7 +79,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-sink-api</artifactId>
-      <version>2.0.0-M2</version>
+      <version>2.0.0-M3</version>
     </dependency>
   </dependencies>
 </project>
diff --git a/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java b/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java
index 65ab172..770873c 100644
--- a/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java
+++ b/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java
@@ -41,6 +41,7 @@ public interface MavenMultiPageReport
      *
      * @param sink The sink to write to.
      * @param locale The locale to use.
+     * @param sinkFactory the sink factory to create sub sinks.
      * @throws MavenReportException if an error occurs.
      */
     void generate( Sink sink, SinkFactory sinkFactory, Locale locale )