Package org.apache.maven.model.converter.relocators

Examples of org.apache.maven.model.converter.relocators.PluginRelocator


        }

        // @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 )
        {
View Full Code Here

TOP

Related Classes of org.apache.maven.model.converter.relocators.PluginRelocator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.