Package org.apache.maven.model.converter.plugins

Examples of org.apache.maven.model.converter.plugins.PluginConfigurationConverter


        loadProperties( properties, new File( basedir, "project.properties" ) );

        for ( Iterator i = converters.iterator(); i.hasNext(); )
        {
            PluginConfigurationConverter converter = (PluginConfigurationConverter) i.next();
            converter.addListeners( listeners );
            converter.convertConfiguration( v4Model, v3Model, properties );
        }

        // @todo Should this be run before or after the configuration converters?
        Collection pluginRelocators = pluginRelocatorManager.getPluginRelocators();
        sendInfoMessage( "There are " + pluginRelocators.size() + " plugin relocators available" );
View Full Code Here

TOP

Related Classes of org.apache.maven.model.converter.plugins.PluginConfigurationConverter

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.