You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2021/10/24 12:48:13 UTC

[maven-antrun-plugin] branch MANTRUN-232 created (now 6bd608e)

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

slachiewicz pushed a change to branch MANTRUN-232
in repository https://gitbox.apache.org/repos/asf/maven-antrun-plugin.git.


      at 6bd608e  [MANTRUN-232] Require Maven 3.2.5

This branch includes the following new commits:

     new 6bd608e  [MANTRUN-232] 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-antrun-plugin] 01/01: [MANTRUN-232] Require Maven 3.2.5

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

slachiewicz pushed a commit to branch MANTRUN-232
in repository https://gitbox.apache.org/repos/asf/maven-antrun-plugin.git

commit 6bd608e7c194cf992d85773051d36c9533b163dc
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Oct 24 14:44:08 2021 +0200

    [MANTRUN-232] Require Maven 3.2.5
---
 pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e5bb627..41f94f4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -62,7 +62,7 @@ under the License.
   </distributionManagement>
 
   <properties>
-    <mavenVersion>3.1.1</mavenVersion>
+    <mavenVersion>3.2.5</mavenVersion>
     <javaVersion>8</javaVersion>
     <surefire.version>2.22.2</surefire.version>
     <mavenPluginToolsVersion>3.6.1</mavenPluginToolsVersion>
@@ -74,16 +74,19 @@ under the License.
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
       <version>${mavenVersion}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-core</artifactId>
       <version>${mavenVersion}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-artifact</artifactId>
       <version>${mavenVersion}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>