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 13:26:57 UTC

[maven-antrun-plugin] branch MANTRUN-232 updated (6bd608e -> ad80795)

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.


 discard 6bd608e  [MANTRUN-232] Require Maven 3.2.5
     add 42274c4  (doc) Update plugins before release
     new ad80795  [MANTRUN-232] Require Maven 3.2.5 - set proper maven scopes

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6bd608e)
            \
             N -- N -- N   refs/heads/MANTRUN-232 (ad80795)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 pom.xml           | 22 ++++++++++++++++++++++
 src/site/site.xml | 11 +++++++++--
 2 files changed, 31 insertions(+), 2 deletions(-)

[maven-antrun-plugin] 01/01: [MANTRUN-232] Require Maven 3.2.5 - set proper maven scopes

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 ad80795ce368c1f9ee1d84bc3d750de651ab3b83
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Wed Oct 13 15:43:13 2021 +0200

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

diff --git a/pom.xml b/pom.xml
index c5f1f60..b158cee 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>