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-remote-resources-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 190ec34  [MRRESOURCES-143] Maven 3.6.3 as minimum requirements
190ec34 is described below

commit 190ec3464ca5e81119f97d4ede875ffd0636ff2f
Author: Slawomir Jaranowski <s.jaranow...@gmail.com>
AuthorDate: Mon Feb 26 22:36:13 2024 +0100

    [MRRESOURCES-143] Maven 3.6.3 as minimum requirements
---
 pom.xml | 33 +++++++++++++++++++++------------
 1 file changed, 21 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index f94a369..99efba0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ under the License.
   </parent>
 
   <artifactId>maven-remote-resources-plugin</artifactId>
-  <version>3.1.1-SNAPSHOT</version>
+  <version>3.2.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Maven Remote Resources Plugin</name>
@@ -65,10 +65,10 @@ under the License.
 
   <properties>
     <javaVersion>8</javaVersion>
-    <mavenVersion>3.2.5</mavenVersion>
-    <!-- the same version like in Maven 3.2.5 -->
-    <aether.version>1.0.0.v20140518</aether.version>
-    
<project.build.outputTimestamp>2023-05-08T18:49:15Z</project.build.outputTimestamp>
+    <mavenVersion>3.6.3</mavenVersion>
+    <!-- the same version like in Maven 3.6.3 -->
+    <resolverVersion>1.4.1</resolverVersion>
+    
<project.build.outputTimestamp>2024-02-26T21:22:56Z</project.build.outputTimestamp>
 
     <!-- Used by site documentation as well, do not remove -->
     <mavenFilteringVersion>3.3.1</mavenFilteringVersion>
@@ -122,17 +122,16 @@ under the License.
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-api</artifactId>
-      <version>${aether.version}</version>
+      <groupId>org.apache.maven.resolver</groupId>
+      <artifactId>maven-resolver-api</artifactId>
+      <version>${resolverVersion}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-util</artifactId>
-      <version>${aether.version}</version>
+      <groupId>org.apache.maven.resolver</groupId>
+      <artifactId>maven-resolver-util</artifactId>
+      <version>${resolverVersion}</version>
     </dependency>
-
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
@@ -246,6 +245,16 @@ under the License.
           <artifactId>maven-plugin-report-plugin</artifactId>
           <configuration>
             <requirementsHistories>
+              <requirementsHistory>
+                <version>3.2.0</version>
+                <maven>3.6.3</maven>
+                <jdk>1.8</jdk>
+              </requirementsHistory>
+              <requirementsHistory>
+                <version>3.1.0</version>
+                <maven>3.2.5</maven>
+                <jdk>1.8</jdk>
+              </requirementsHistory>
               <requirementsHistory>
                 <version>3.0.0</version>
                 <maven>3.2.5</maven>

Reply via email to