}
// @todo Should this be run before or after the configuration converters?
Collection pluginRelocators = pluginRelocatorManager.getPluginRelocators();
sendInfoMessage( "There are " + pluginRelocators.size() + " plugin relocators available" );
PluginRelocator pluginRelocator;
Iterator iterator = pluginRelocators.iterator();
while ( iterator.hasNext() )
{
pluginRelocator = (PluginRelocator) iterator.next();
pluginRelocator.addListeners( listeners );
pluginRelocator.relocate( v4Model );
}
// Sort the plugins
if ( v4Model.getBuild() != null )
{