Package org.apache.maven.dotnet.compiler

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


        {
            commandExecutor.executeCommand( getCompilerFileName(), getCommands(), failOnErrorOutput() );
        }
        catch ( CompilerException e )
        {
            throw new InvalidArtifactException( e );
        }
        if ( compiledArtifact == null || !compiledArtifact.exists() )
        {
            throw new InvalidArtifactException( "Could not find main artifact" );
        }
        return compiledArtifact;
    }
View Full Code Here

TOP

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

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.