You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2021/09/28 17:55:30 UTC

[maven-integration-testing] 01/01: Fix IT0138: the m-plugin-p mojo is removed from maven-plugin lifecycle

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

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

commit fb6660043cbd42b6a539bd340a0aab9b446876b3
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Tue Sep 28 19:54:45 2021 +0200

    Fix IT0138: the m-plugin-p mojo is removed from maven-plugin lifecycle
    
    The extra mojo is not needed anymore, as Resolver handles the group
    level metadata now.
---
 .../test/java/org/apache/maven/it/MavenIT0138PluginLifecycleTest.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0138PluginLifecycleTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0138PluginLifecycleTest.java
index 3f940a9..aba92f7 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0138PluginLifecycleTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0138PluginLifecycleTest.java
@@ -57,7 +57,8 @@ public class MavenIT0138PluginLifecycleTest
         verifier.assertFilePresent( "target/compiler-test-compile.txt" );
         verifier.assertFilePresent( "target/surefire-test.txt" );
         verifier.assertFilePresent( "target/jar-jar.txt" );
-        verifier.assertFilePresent( "target/plugin-add-plugin-artifact-metadata.txt" );
+        // maven-plugin lifecycle has this extra mojo removed (as Resolver handles group level metadata now)
+        // verifier.assertFilePresent( "target/plugin-add-plugin-artifact-metadata.txt" );
         verifier.assertFilePresent( "target/install-install.txt" );
         if ( matchesVersionRange( "(,2.2.0)" ) )
         {