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/07/30 09:08:45 UTC

[maven-dependency-plugin] branch master updated: [MDEP-813] Require Maven 3.2.5

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

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


The following commit(s) were added to refs/heads/master by this push:
     new fd1f89cf [MDEP-813] Require Maven 3.2.5
fd1f89cf is described below

commit fd1f89cf94b649ddec175aaf5d1427b7ee43aff1
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Fri Jul 29 21:11:49 2022 +0200

    [MDEP-813] Require Maven 3.2.5
---
 pom.xml | 55 ++++++++++++++++++++++++++++---------------------------
 1 file changed, 28 insertions(+), 27 deletions(-)

diff --git a/pom.xml b/pom.xml
index fb9ffde3..c4949756 100644
--- a/pom.xml
+++ b/pom.xml
@@ -89,9 +89,10 @@ under the License.
   </contributors>
 
   <properties>
-    <mavenVersion>3.1.1</mavenVersion>
+    <mavenVersion>3.2.5</mavenVersion>
     <jettyVersion>9.4.45.v20220203</jettyVersion>
-    <pluginTestingVersion>3.1.0</pluginTestingVersion>
+    <pluginTestingVersion>3.3.0</pluginTestingVersion>
+    <resolverVersion>1.0.0.v20140518</resolverVersion>
     <javaVersion>8</javaVersion>
     <project.build.outputTimestamp>2022-03-05T18:51:54Z</project.build.outputTimestamp>
     <slf4j.version>1.7.36</slf4j.version>
@@ -104,12 +105,12 @@ under the License.
       <dependency>
         <groupId>org.eclipse.sisu</groupId>
         <artifactId>org.eclipse.sisu.inject</artifactId>
-        <version>0.0.0.M5</version>
+        <version>0.3.0.M1</version>
       </dependency>
       <dependency>
         <groupId>org.eclipse.sisu</groupId>
         <artifactId>org.eclipse.sisu.plexus</artifactId>
-        <version>0.0.0.M5</version>
+        <version>0.3.0.M1</version>
       </dependency>
     </dependencies>
   </dependencyManagement>
@@ -243,27 +244,32 @@ under the License.
     <dependency>
       <groupId>org.eclipse.aether</groupId>
       <artifactId>aether-api</artifactId>
-      <version>0.9.0.M2</version>
+      <version>${resolverVersion}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.eclipse.aether</groupId>
       <artifactId>aether-util</artifactId>
-      <version>0.9.0.M2</version>
+      <version>${resolverVersion}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-connector-wagon</artifactId>
-      <version>0.9.0.M2</version>
-      <scope>provided</scope>
+      <artifactId>aether-connector-basic</artifactId>
+      <version>${resolverVersion}</version>
+      <scope>test</scope>
     </dependency>
-    
     <dependency>
-      <groupId>org.apache.maven.wagon</groupId>
-      <artifactId>wagon-http-lightweight</artifactId>
-      <version>3.4.0</version>
-      <scope>provided</scope>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-transport-file</artifactId>
+      <version>${resolverVersion}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-transport-http</artifactId>
+      <version>${resolverVersion}</version>
+      <scope>test</scope>
     </dependency>
 
     <!-- test -->
@@ -274,12 +280,6 @@ under the License.
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.apache.maven.plugin-testing</groupId>
-      <artifactId>maven-plugin-testing-tools</artifactId>
-      <version>${pluginTestingVersion}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency> 
       <groupId>org.apache.maven.plugin-testing</groupId>
       <artifactId>maven-plugin-testing-harness</artifactId>
       <version>${pluginTestingVersion}</version>
@@ -292,12 +292,6 @@ under the License.
       <scope>test</scope>
     </dependency>
 
-    <dependency>
-      <groupId>org.codehaus.plexus</groupId>
-      <artifactId>plexus-interpolation</artifactId>
-      <version>1.26</version>
-      <scope>test</scope>
-    </dependency>
     <!-- Remove once deprecated code has been replaced/removed  -->
     <dependency>
       <groupId>org.apache.maven</groupId>
@@ -446,8 +440,15 @@ under the License.
               <filterProperties>
                 <repository.proxy.url>${repository.proxy.url}</repository.proxy.url>
               </filterProperties>
-              <addTestClassPath>true</addTestClassPath>
             </configuration>
+            <dependencies>
+              <!-- dependencies used only in verification scripts -->
+              <dependency>
+                <groupId>org.jsoup</groupId>
+                <artifactId>jsoup</artifactId>
+                <version>1.15.2</version>
+              </dependency>
+            </dependencies>
           </plugin>
           <plugin>
             <groupId>org.codehaus.mojo</groupId>