Skip to content

Commit

Permalink
[MRRESOURCES-143] Maven 3.6.3 as minimum requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Feb 26, 2024
1 parent 2570ff4 commit e71f5ea
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit e71f5ea

Please sign in to comment.