Package com.alibaba.citrus.maven.eclipse.base.eclipse.osgiplugin

Examples of com.alibaba.citrus.maven.eclipse.base.eclipse.osgiplugin.EclipseOsgiPlugin


            getLog().info(
                    Messages.getString(
                            "EclipseToMavenMojo.processingplugin",
                            new Object[] { new Integer(i++), new Integer(plugins.keySet().size()) })); //$NON-NLS-1$
            String key = (String) it.next();
            EclipseOsgiPlugin plugin = (EclipseOsgiPlugin) plugins.get(key);
            Model model = (Model) models.get(key);
            writeArtifact(plugin, model, remoteRepo);
        }
    }
View Full Code Here


        }
    }

    protected void processFile(File file, Map plugins, Map models)
            throws MojoExecutionException, MojoFailureException {
        EclipseOsgiPlugin plugin = getEclipsePlugin(file);

        if (plugin == null) {
            getLog().warn(Messages.getString("EclipseToMavenMojo.skippingfile", file.getAbsolutePath())); //$NON-NLS-1$
            return;
        }
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.maven.eclipse.base.eclipse.osgiplugin.EclipseOsgiPlugin

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.