Package cuke4duke.ant

Examples of cuke4duke.ant.GemTask


     *            </ul>
     * @throws org.apache.maven.plugin.MojoExecutionException
     *             if gem installation fails.
     */
    protected void installGem(String gemArgs) throws MojoExecutionException {
        GemTask gem = new GemTask();
        if (gemDirectory != null && gemDirectory.exists()) {
            gem.setDir(gemDirectory);
        }
        gem.setProject(getProject());
        gem.setArgs(gemArgs + getProxyArg());
        gem.execute();
    }
View Full Code Here

TOP

Related Classes of cuke4duke.ant.GemTask

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.