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/10 14:35:11 UTC

[maven] branch MNG-5995-x created (now 0459f50)

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

slachiewicz pushed a change to branch MNG-5995-x
in repository https://gitbox.apache.org/repos/asf/maven.git.


      at 0459f50  Skip Maven Remoe Resources Plugin

This branch includes the following new commits:

     new 70562a1  Prepare dist without maven-compat - require plugins 3.0+
     new 04835e3  Move PathTranslator to maven-compat - no implementatio  in maven-core
     new 044052a  Update Maven-enforcer to 3.0.0
     new 0459f50  Skip Maven Remoe Resources Plugin

The 4 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] 04/04: Skip Maven Remoe Resources Plugin

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

slachiewicz pushed a commit to branch MNG-5995-x
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 0459f50f363e54364600215b3d9f738b50d7951b
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Nov 19 01:17:13 2018 +0100

    Skip Maven Remoe Resources Plugin
---
 pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index eaad9c1..84e7141 100644
--- a/pom.xml
+++ b/pom.xml
@@ -604,6 +604,14 @@ under the License.
             <skip>true</skip>
           </configuration>
         </plugin>
+        <plugin>
+          <artifactId>maven-remote-resources-plugin</artifactId>
+          <version>1.6.0</version>
+          <configuration>
+            <!-- https://issues.apache.org/jira/browse/MRRESOURCES-92 -->
+            <skip>true</skip>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>

[maven] 02/04: Move PathTranslator to maven-compat - no implementatio in maven-core

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

slachiewicz pushed a commit to branch MNG-5995-x
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 04835e31cfdc70d7f8f01b09de689b89fe8a6784
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Nov 19 00:33:56 2018 +0100

    Move PathTranslator to maven-compat - no implementatio  in maven-core
---
 .../src/main/java/org/apache/maven/project/path/PathTranslator.java       | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/maven-core/src/main/java/org/apache/maven/project/path/PathTranslator.java b/maven-compat/src/main/java/org/apache/maven/project/path/PathTranslator.java
similarity index 100%
rename from maven-core/src/main/java/org/apache/maven/project/path/PathTranslator.java
rename to maven-compat/src/main/java/org/apache/maven/project/path/PathTranslator.java

[maven] 01/04: Prepare dist without maven-compat - require plugins 3.0+

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

slachiewicz pushed a commit to branch MNG-5995-x
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 70562a15a76f0322f52a40962e0032348b3e99c4
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Nov 19 00:09:27 2018 +0100

    Prepare dist without maven-compat - require plugins 3.0+
---
 apache-maven/pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index 40917d5..e170ea2 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -47,10 +47,13 @@ under the License.
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-core</artifactId>
     </dependency>
+    <!-- to see problematic plugins -->
+<!--
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-compat</artifactId>
     </dependency>
+-->
     <dependency>
       <groupId>org.eclipse.sisu</groupId>
       <artifactId>org.eclipse.sisu.plexus</artifactId>

[maven] 03/04: Update Maven-enforcer to 3.0.0

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

slachiewicz pushed a commit to branch MNG-5995-x
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 044052a1f65072dfed97c99106d9af8576e98fba
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Nov 19 01:16:46 2018 +0100

    Update Maven-enforcer to 3.0.0
    
    Skip maven-enforcer
---
 pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index 49875c5..eaad9c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -592,6 +592,18 @@ under the License.
             </excludes>
           </configuration>
         </plugin>
+        <!-- overwrites to prepare plugins 3.0+ ready -->
+        <plugin>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <version>3.0.0-M2</version>
+          <configuration>
+            <!-- skip until enforcer plugin will be updated to 3.0+ api
+                  https://issues.apache.org/jira/browse/MENFORCER-277
+                  https://issues.apache.org/jira/browse/MENFORCER-267
+            -->
+            <skip>true</skip>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>