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

svn commit: r1212951 - /maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3710PollutedClonedPluginsTest.java

Author: bimargulies
Date: Sun Dec 11 01:32:09 2011
New Revision: 1212951

URL: http://svn.apache.org/viewvc?rev=1212951&view=rev
Log:
MNG-3710: ModelUtils.cloneModel() and .cloneBuild() pollute existing Plugin instances with merged information
o repair integration test to invoke the plugin under the actual artifactId that it was built under, and not another.

Modified:
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3710PollutedClonedPluginsTest.java

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3710PollutedClonedPluginsTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3710PollutedClonedPluginsTest.java?rev=1212951&r1=1212950&r2=1212951&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3710PollutedClonedPluginsTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3710PollutedClonedPluginsTest.java Sun Dec 11 01:32:09 2011
@@ -93,7 +93,7 @@ public class MavenITmng3710PollutedClone
         verifier = newVerifier( projectDir.getAbsolutePath() );
         
         List goals = new ArrayList();
-        goals.add( "org.apache.maven.its.mng3710:maven-mng3710-directInvoke-plugin:1:run" );
+        goals.add( "org.apache.maven.its.mng3710:mavenit-mng3710-directInvoke-plugin:1:run" );
         goals.add( "validate" );
         
         verifier.executeGoals( goals );