You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/03/03 17:59:09 UTC

[maven-dependency-plugin] 01/01: [MDEP-796] Upgrade Maven Parent to 35

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

sjaranowski pushed a commit to branch MDEP-796
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git

commit 0281aa63e2e086f9920584a658a1ac983d190ce6
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Thu Mar 3 18:18:41 2022 +0100

    [MDEP-796] Upgrade Maven Parent to 35
---
 pom.xml | 51 +++++++++++++++++++--------------------------------
 1 file changed, 19 insertions(+), 32 deletions(-)

diff --git a/pom.xml b/pom.xml
index 62de5c8..5018291 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
-    <version>34</version>
+    <version>35</version>
     <relativePath/>
   </parent>
 
@@ -93,11 +93,27 @@ under the License.
     <jettyVersion>9.4.45.v20220203</jettyVersion>
     <pluginTestingVersion>3.1.0</pluginTestingVersion>
     <javaVersion>8</javaVersion>
-    <mavenPluginToolsVersion>3.6.4</mavenPluginToolsVersion>
     <project.build.outputTimestamp>2021-06-07T12:17:08Z</project.build.outputTimestamp>
     <slf4j.version>1.7.36</slf4j.version>
   </properties>
 
+  <dependencyManagement>
+    <dependencies>
+      <!-- TODO check with Maven Api upgrade -->
+      <!-- the same version as in Maven 3.1.1 -->
+      <dependency>
+        <groupId>org.eclipse.sisu</groupId>
+        <artifactId>org.eclipse.sisu.inject</artifactId>
+        <version>0.0.0.M5</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.sisu</groupId>
+        <artifactId>org.eclipse.sisu.plexus</artifactId>
+        <version>0.0.0.M5</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <dependencies>
     <!-- maven -->
     <dependency>
@@ -221,6 +237,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
+      <scope>provided</scope>
     </dependency>
     
     <dependency>
@@ -353,29 +370,6 @@ under the License.
             </excludes>
           </configuration>
         </plugin>
-        <plugin>
-          <artifactId>maven-javadoc-plugin</artifactId>
-          <version>3.3.1</version>
-          <configuration> <!--  remove after MPOM-269 -->
-            <tagletArtifacts combine.self="override"/>
-          </configuration>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-project-info-reports-plugin</artifactId>
-          <version>3.1.2</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-site-plugin</artifactId>
-          <version>3.10.0</version>
-        </plugin>
-        <plugin>
-          <!-- version should be removed after will be updated in parent pom -->
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-invoker-plugin</artifactId>
-          <version>3.2.2</version>
-        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
@@ -402,12 +396,6 @@ under the License.
         </executions>
       </plugin>
       <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration> <!--  remove after MPOM-269 -->
-          <tagletArtifacts combine.self="override"/>
-        </configuration>
-      </plugin>
-      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
@@ -448,7 +436,6 @@ under the License.
                 <repository.proxy.url>${repository.proxy.url}</repository.proxy.url>
               </filterProperties>
               <addTestClassPath>true</addTestClassPath>
-              <streamLogsOnFailures>true</streamLogsOnFailures>
             </configuration>
           </plugin>
           <plugin>