All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.saumya.mojo.gem.SetsMojo Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package de.saumya.mojo.gem;

import java.io.File;
import java.io.IOException;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.plugin.MojoExecutionException;

import de.saumya.mojo.ruby.gems.GemException;
import de.saumya.mojo.ruby.script.ScriptException;

/**
 * installs a set of given gems without resolving any transitive dependencies
 * 
 * @goal sets
 * @phase initialize
 */
public class SetsMojo extends AbstractGemMojo {
    
    /**
     * the scope under which the gems get installed
     * 
     * @parameter default-value="compile"
     */
    protected String scope;

    /**
     * map of gemname to version, i.e. it is a "list" of gems with fixed version
     * 
     * @parameter
     */
    protected Map  gems = Collections.emptyMap();
    
    @Override
    protected void executeWithGems() throws MojoExecutionException,
            ScriptException, IOException, GemException {
        List artifacts = new LinkedList();
        for( Map.Entry gem : gems.entrySet() ) {
            Set set = manager.resolve( manager.createGemArtifact( gem.getKey(),
                                                                            gem.getValue() ),
                                               localRepository,
                                               project.getRemoteArtifactRepositories() );
           if ( set.size() == 1 )
           {
               artifacts.add( set.iterator().next() );
           }
           else if ( set.size() > 1 )
           {
               getLog().error( "found more then one artifact for given version: " + gem.getKey() + " " + gem.getValue() );
           }
        }
        
        File home = gemsConfig.getGemHome();
        // use gemHome as base for other gems installation directories
        String base = this.gemsConfig.getGemHome() != null ? 
                this.gemsConfig.getGemHome().getAbsolutePath() : 
                    (project.getBuild().getDirectory() + "/rubygems");
        try
        {
            final File gemHome;
            if ( "test".equals( scope ) || "provided".equals( scope ) )
            {
                gemHome = gemHome( base, scope);
            }
            else 
            {
                gemHome = new File( base );
            }
            this.gemsConfig.setGemHome(gemHome);
            this.gemsConfig.addGemPath(gemHome);
            
            getLog().info( "installing gem sets for " + scope + " scope into " + 
                           gemHome.getAbsolutePath().replace(project.getBasedir().getAbsolutePath() + File.separatorChar, "") );
            gemsInstaller.installGems( project, artifacts, null, (List) null);
           
        }
        finally
        {
            // reset old gem home again
            this.gemsConfig.setGemHome(home);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy