Package org.apache.maven.dotnet.compiler

Examples of org.apache.maven.dotnet.compiler.CommandExecutor


    }

    public File compile()
        throws InvalidArtifactException
    {
        CommandExecutor commandExecutor = CommandExecutor.Factory.createDefaultCommmandExecutor();
        commandExecutor.setLogger( compilerContext.getPlexusLogger() );
        try
        {
            commandExecutor.executeCommand( getCompilerFileName(), getCommands(), failOnErrorOutput() );
        }
        catch ( CompilerException e )
        {
            throw new InvalidArtifactException( e );
        }
View Full Code Here

TOP

Related Classes of org.apache.maven.dotnet.compiler.CommandExecutor

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.