You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gn...@apache.org on 2022/02/21 09:11:10 UTC

[maven-integration-testing] branch master updated: [MNG-7349] Fix IT not working on a clean repo

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

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new 63e7eb3  [MNG-7349] Fix IT not working on a clean repo
63e7eb3 is described below

commit 63e7eb3e77f1d652ed8c594eb38240945b5e8f1a
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Feb 21 10:10:23 2022 +0100

    [MNG-7349] Fix IT not working on a clean repo
---
 .../mng-7349-relocation-warning/artifacts/new-plugin/pom.xml   | 10 ++++++++++
 .../mng-7349-relocation-warning/artifacts/old-plugin/pom.xml   | 10 ++++++++++
 .../resources/mng-7349-relocation-warning/artifacts/pom.xml    |  8 ++++----
 3 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/new-plugin/pom.xml b/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/new-plugin/pom.xml
index ed11692..cc5abe9 100644
--- a/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/new-plugin/pom.xml
+++ b/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/new-plugin/pom.xml
@@ -39,4 +39,14 @@
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>3.3</version>
+      </plugin>
+    </plugins>
+  </build>
 </project>
diff --git a/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/old-plugin/pom.xml b/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/old-plugin/pom.xml
index 7e53351..33cca50 100644
--- a/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/old-plugin/pom.xml
+++ b/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/old-plugin/pom.xml
@@ -42,4 +42,14 @@
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>3.3</version>
+      </plugin>
+    </plugins>
+  </build>
 </project>
diff --git a/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/pom.xml b/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/pom.xml
index de9de10..eb13a5b 100644
--- a/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/pom.xml
+++ b/core-it-suite/src/test/resources/mng-7349-relocation-warning/artifacts/pom.xml
@@ -15,13 +15,13 @@
   </properties>
 
   <modules>
-    <module>new-dep</module>
     <module>new-dep-dep</module>
-    <module>new-plugin</module>
-    <module>new-plugin-dep</module>
+    <module>new-dep</module>
     <module>old-dep-dep</module>
-    <module>old-dep</module>
     <module>old-plugin-dep</module>
+    <module>new-plugin-dep</module>
+    <module>new-plugin</module>
+    <module>old-dep</module>
     <module>old-plugin</module>
   </modules>
 </project>