[MNG-7618] Fix display for plugins (#217)

diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6566ExecuteAnnotationShouldNotReExecuteGoalsTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6566ExecuteAnnotationShouldNotReExecuteGoalsTest.java
index ed6293d..febf4bc 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6566ExecuteAnnotationShouldNotReExecuteGoalsTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6566ExecuteAnnotationShouldNotReExecuteGoalsTest.java
@@ -99,7 +99,7 @@
         int counter = 0;
         for ( String line : lines )
         {
-            if ( line.contains( "maven-compiler-plugin:0.1-stub-SNAPSHOT:compile") )
+            if ( line.contains( "compiler:0.1-stub-SNAPSHOT:compile") )
             {
                 counter++;
             }
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7353CliGoalInvocationTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7353CliGoalInvocationTest.java
index 8d01cd4..519638f 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7353CliGoalInvocationTest.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7353CliGoalInvocationTest.java
@@ -53,14 +53,14 @@
     public void testPrefixGoal()
         throws Exception
     {
-        run( "pluginPrefix-goal", "dependency:list", "maven-dependency-plugin:3.3.0:list (default-cli)" );
+        run( "pluginPrefix-goal", "dependency:list", "dependency:3.3.0:list (default-cli)" );
     }
 
     @Test
     public void testPrefixGoalAtId()
         throws Exception
     {
-        run( "pluginPrefix-goal@id", "dependency:list@id", "maven-dependency-plugin:3.3.0:list (id)" );
+        run( "pluginPrefix-goal@id", "dependency:list@id", "dependency:3.3.0:list (id)" );
     }
 
     /**
@@ -70,7 +70,7 @@
     public void testPrefixVersionGoal()
         throws Exception
     {
-        run( "pluginPrefix-version-goal", "dependency:3.1.1:list", "maven-dependency-plugin:3.1.1:list (default-cli)" );
+        run( "pluginPrefix-version-goal", "dependency:3.1.1:list", "dependency:3.1.1:list (default-cli)" );
     }
 
     /**
@@ -80,34 +80,34 @@
     public void testPrefixVersionGoalAtId()
         throws Exception
     {
-        run( "pluginPrefix-goal@id", "dependency:3.1.1:list@id", "maven-dependency-plugin:3.1.1:list (id)" );
+        run( "pluginPrefix-goal@id", "dependency:3.1.1:list@id", "dependency:3.1.1:list (id)" );
     }
 
     @Test
     public void testGroupIdArtifactIdGoal()
         throws Exception
     {
-        run( "groupId-artifactId-goal", "org.apache.maven.plugins:maven-dependency-plugin:list", "maven-dependency-plugin:3.3.0:list (default-cli)" );
+        run( "groupId-artifactId-goal", "org.apache.maven.plugins:maven-dependency-plugin:list", "dependency:3.3.0:list (default-cli)" );
     }
 
     @Test
     public void testGroupIdArtifactIdGoalAtId()
         throws Exception
     {
-        run( "groupId-artifactId-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:list@id", "maven-dependency-plugin:3.3.0:list (id)" );
+        run( "groupId-artifactId-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:list@id", "dependency:3.3.0:list (id)" );
     }
 
     @Test
     public void testGroupIdArtifactIdVersionGoal()
         throws Exception
     {
-        run( "groupId-artifactId-version-goal", "org.apache.maven.plugins:maven-dependency-plugin:3.1.1:list", "maven-dependency-plugin:3.1.1:list (default-cli)" );
+        run( "groupId-artifactId-version-goal", "org.apache.maven.plugins:maven-dependency-plugin:3.1.1:list", "dependency:3.1.1:list (default-cli)" );
     }
 
     @Test
     public void testGroupIdArtifactIdVersionGoalAtId()
         throws Exception
     {
-        run( "groupId-artifactId-version-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:3.1.1:list@id", "maven-dependency-plugin:3.1.1:list (id)" );
+        run( "groupId-artifactId-version-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:3.1.1:list@id", "dependency:3.1.1:list (id)" );
     }
 }