Reversing fix for MNG-3827. This causes regression in MNG-3679.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@713525 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Britton Isbell 2008-11-12 21:51:15 +00:00
parent f870fa638d
commit 2881df1046
1 changed files with 3 additions and 3 deletions

View File

@ -184,9 +184,9 @@ public final class PomClassicTransformer
ModelContainerAction action = dependencyContainer.containerAction( managementContainer );
if ( action.equals( ModelContainerAction.JOIN ) || action.equals( ModelContainerAction.DELETE ) )
{
ModelContainer reverseSortedContainer = new ArtifactModelContainerFactory().create(
ModelTransformerContext.sort(dependencyContainer.getProperties(), ProjectUri.Build.Plugins.Plugin.xUri) );
source.join( reverseSortedContainer, managementContainer );
// ModelContainer reverseSortedContainer = new ArtifactModelContainerFactory().create(
// ModelTransformerContext.sort(dependencyContainer.getProperties(), ProjectUri.Build.Plugins.Plugin.xUri) );
source.join( dependencyContainer, managementContainer );
}
}
}