Repository: maven Updated Branches: refs/heads/master fc5cd3710 -> f1dcec88a
I inadvertently broke a test, my shell script doesn't check the failure and carried on. Sorry about that. Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/f1dcec88 Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/f1dcec88 Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/f1dcec88 Branch: refs/heads/master Commit: f1dcec88ae81c5452f44b08a9c21bb96b9efa6fa Parents: fc5cd37 Author: Jason van Zyl <[email protected]> Authored: Thu Jun 12 10:29:47 2014 -0400 Committer: Jason van Zyl <[email protected]> Committed: Thu Jun 12 10:29:47 2014 -0400 ---------------------------------------------------------------------- .../java/org/apache/maven/lifecycle/LifecycleExecutorTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/f1dcec88/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java ---------------------------------------------------------------------- diff --git a/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java b/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java index f575d70..b18fa10 100644 --- a/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java +++ b/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java @@ -233,9 +233,9 @@ public class LifecycleExecutorTest assertEquals( "it:xpp3-writer", executions.get( 4 ).getMojoDescriptor().getFullGoalName() ); assertEquals( "it:java", executions.get( 5 ).getMojoDescriptor().getFullGoalName() ); assertEquals( "it:xpp3-reader", executions.get( 6 ).getMojoDescriptor().getFullGoalName() ); - assertEquals( "plugin:descriptor", executions.get( 7 ).getMojoDescriptor().getFullGoalName() ); - assertEquals( "resources:resources", executions.get( 8 ).getMojoDescriptor().getFullGoalName() ); - assertEquals( "compiler:compile", executions.get( 9 ).getMojoDescriptor().getFullGoalName() ); + assertEquals( "resources:resources", executions.get( 7 ).getMojoDescriptor().getFullGoalName() ); + assertEquals( "compiler:compile", executions.get( 8 ).getMojoDescriptor().getFullGoalName() ); + assertEquals( "plugin:descriptor", executions.get( 9 ).getMojoDescriptor().getFullGoalName() ); assertEquals( "resources:testResources", executions.get( 10 ).getMojoDescriptor().getFullGoalName() ); assertEquals( "compiler:testCompile", executions.get( 11 ).getMojoDescriptor().getFullGoalName() ); assertEquals( "surefire:test", executions.get( 12 ).getMojoDescriptor().getFullGoalName() );
