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

org.jruby.maven.InstallGemsMojo Maven / Gradle / Ivy

The newest version!

package org.jruby.maven;

import org.apache.maven.plugin.MojoExecutionException;

/**
 * @goal install-gems
 */
public class InstallGemsMojo extends AbstractJRubyMojo {
    /**
     * @parameter expression="${jruby.gems}"
     */
    private String gems = null;

    public void execute() throws MojoExecutionException {
        ensureGems(gems.split("[, ]+"));
    }    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy