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/29 19:12:45 UTC

[maven-dependency-plugin] branch MDEP-813 created (now 05b021d4)

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

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


      at 05b021d4 [MDEP-813] Require Maven 3.2.5

This branch includes the following new commits:

     new 05b021d4 [MDEP-813] Require Maven 3.2.5

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-dependency-plugin] 01/01: [MDEP-813] Require Maven 3.2.5

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

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

commit 05b021d42f18516aa1c68aeb6f4e362896b4e851
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>