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/02/25 11:05:57 UTC

[maven-plugin-tools] branch MPLUGIN-395 created (now 290654a)

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

michaelo pushed a change to branch MPLUGIN-395
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git.


      at 290654a  [MPLUGIN-395] Upgrade Maven Reporting API/Impl to 3.1.0

This branch includes the following new commits:

     new 290654a  [MPLUGIN-395] Upgrade Maven Reporting API/Impl to 3.1.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-plugin-tools] 01/01: [MPLUGIN-395] Upgrade Maven Reporting API/Impl to 3.1.0

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

michaelo pushed a commit to branch MPLUGIN-395
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git

commit 290654ad6ff016a3301bd9cf3317a2d55e8b811c
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Fri Feb 25 12:04:47 2022 +0100

    [MPLUGIN-395] Upgrade Maven Reporting API/Impl to 3.1.0
    
    Implicitly update MSITE to 3.11.0 and MPIR 3.2.2 for consistency with reporting.
    
    This closes #74
---
 maven-plugin-plugin/pom.xml                                       | 5 +++--
 maven-plugin-plugin/src/it/fix-maven-since-3.x/pom.xml            | 2 +-
 maven-plugin-plugin/src/it/mplugin-319_report-since/pom.xml       | 2 +-
 .../src/it/plugin-info-jdk-default-version/pom.xml                | 2 +-
 maven-plugin-plugin/src/it/plugin-info-jdk/pom.xml                | 2 +-
 maven-plugin-plugin/src/it/plugin-report-annotations/pom.xml      | 6 +++---
 maven-plugin-plugin/src/it/plugin-report/pom.xml                  | 8 ++++----
 maven-plugin-tools-generators/pom.xml                             | 4 ++--
 pom.xml                                                           | 2 +-
 9 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/maven-plugin-plugin/pom.xml b/maven-plugin-plugin/pom.xml
index 45d05f5..5f8b7d7 100644
--- a/maven-plugin-plugin/pom.xml
+++ b/maven-plugin-plugin/pom.xml
@@ -154,7 +154,7 @@
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-impl</artifactId>
-      <version>3.0.0</version>
+      <version>3.1.0</version>
     </dependency>
 
     <!-- plexus -->
@@ -350,7 +350,8 @@
               <settingsFile>src/it/settings.xml</settingsFile>
               <streamLogsOnFailures>true</streamLogsOnFailures>
               <filterProperties>
-                <sitePluginVersion>3.3</sitePluginVersion>
+                <sitePluginVersion>3.11.0</sitePluginVersion>
+                <projectInfoReportsPlugin>3.2.2</projectInfoReportsPlugin>
                 <antVersion>${antVersion}</antVersion>
               </filterProperties>
               <properties>
diff --git a/maven-plugin-plugin/src/it/fix-maven-since-3.x/pom.xml b/maven-plugin-plugin/src/it/fix-maven-since-3.x/pom.xml
index eec11c3..5cd901b 100644
--- a/maven-plugin-plugin/src/it/fix-maven-since-3.x/pom.xml
+++ b/maven-plugin-plugin/src/it/fix-maven-since-3.x/pom.xml
@@ -71,7 +71,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
+        <version>@projectInfoReportsPlugin@</version>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
diff --git a/maven-plugin-plugin/src/it/mplugin-319_report-since/pom.xml b/maven-plugin-plugin/src/it/mplugin-319_report-since/pom.xml
index f7ad90a..542ef1d 100644
--- a/maven-plugin-plugin/src/it/mplugin-319_report-since/pom.xml
+++ b/maven-plugin-plugin/src/it/mplugin-319_report-since/pom.xml
@@ -67,7 +67,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
+        <version>@projectInfoReportsPlugin@</version>
         <reportSets>
           <reportSet>
             <reports>
diff --git a/maven-plugin-plugin/src/it/plugin-info-jdk-default-version/pom.xml b/maven-plugin-plugin/src/it/plugin-info-jdk-default-version/pom.xml
index 8efba42..feff8a5 100644
--- a/maven-plugin-plugin/src/it/plugin-info-jdk-default-version/pom.xml
+++ b/maven-plugin-plugin/src/it/plugin-info-jdk-default-version/pom.xml
@@ -73,7 +73,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
+        <version>@projectInfoReportsPlugin@</version>
         <reportSets>
           <reportSet>
             <reports>
diff --git a/maven-plugin-plugin/src/it/plugin-info-jdk/pom.xml b/maven-plugin-plugin/src/it/plugin-info-jdk/pom.xml
index d0a198e..081a1e3 100644
--- a/maven-plugin-plugin/src/it/plugin-info-jdk/pom.xml
+++ b/maven-plugin-plugin/src/it/plugin-info-jdk/pom.xml
@@ -77,7 +77,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
+        <version>@projectInfoReportsPlugin@</version>
         <reportSets>
           <reportSet>
             <reports>
diff --git a/maven-plugin-plugin/src/it/plugin-report-annotations/pom.xml b/maven-plugin-plugin/src/it/plugin-report-annotations/pom.xml
index 327bc10..434886d 100644
--- a/maven-plugin-plugin/src/it/plugin-report-annotations/pom.xml
+++ b/maven-plugin-plugin/src/it/plugin-report-annotations/pom.xml
@@ -51,12 +51,12 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-impl</artifactId>
-      <version>3.0.0</version>
+      <version>3.1.0</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-api</artifactId>
-      <version>3.0</version>
+      <version>3.1.0</version>
     </dependency>
   </dependencies>
 
@@ -100,7 +100,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
+        <version>@projectInfoReportsPlugin@</version>
         <reportSets>
           <reportSet>
             <reports>
diff --git a/maven-plugin-plugin/src/it/plugin-report/pom.xml b/maven-plugin-plugin/src/it/plugin-report/pom.xml
index e55b56e..925acd7 100644
--- a/maven-plugin-plugin/src/it/plugin-report/pom.xml
+++ b/maven-plugin-plugin/src/it/plugin-report/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven</groupId>
     <artifactId>maven-parent</artifactId>
-    <version>21</version>
+    <version>34</version>
   </parent>
 
   <groupId>org.apache.maven.its</groupId>
@@ -51,12 +51,12 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-impl</artifactId>
-      <version>3.0.0</version>
+      <version>3.1.0</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-api</artifactId>
-      <version>3.0</version>
+      <version>3.1.0</version>
     </dependency>
   </dependencies>
 
@@ -90,7 +90,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
+        <version>@projectInfoReportsPlugin@</version>
         <reportSets>
           <reportSet>
             <reports>
diff --git a/maven-plugin-tools-generators/pom.xml b/maven-plugin-tools-generators/pom.xml
index a543fa8..bf70381 100644
--- a/maven-plugin-tools-generators/pom.xml
+++ b/maven-plugin-tools-generators/pom.xml
@@ -51,7 +51,7 @@
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-api</artifactId>
-      <version>3.0</version>
+      <version>3.1.0</version>
     </dependency>
 
     <!-- plexus -->
@@ -95,7 +95,7 @@
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-impl</artifactId>
-      <version>3.0.0</version>
+      <version>3.1.0</version>
       <scope>test</scope>
       <exclusions>
         <exclusion>
diff --git a/pom.xml b/pom.xml
index 42ad668..d337a02 100644
--- a/pom.xml
+++ b/pom.xml
@@ -267,7 +267,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-site-plugin</artifactId>
-          <version>3.9.1</version>
+          <version>3.11.0</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>