Package org.apache.maven.dotnet

Examples of org.apache.maven.dotnet.Vendor


        if ( !sourceDir.exists() )
        {
            return;
        }

        Vendor vendor;
        if ( vendorName != null )
        {
            vendor = Vendor.valueOf( vendorName.toUpperCase() );
        }
        else
View Full Code Here


        if ( !sourceDir.exists() )
        {
            return;
        }

        Vendor vendor;
        if ( vendorName != null )
        {
            vendor = Vendor.valueOf( vendorName.toUpperCase() );
        }
        else
View Full Code Here

        if ( !testAssembly.exists() )
        {
            return;
        }

        Vendor vendor;
        if ( vendorName != null )
        {
            vendor = Vendor.valueOf( vendorName.toUpperCase() );
        }
        else
        {
            vendor = Vendor.getDefaultVendorForOS();
        }

        // The directory where the test artifact exists
        File testAssemblies =
            new File( project.getBuild().getDirectory(), BuildDirectories.TEST_ASSEMBLIES.getBuildDirectoryName() );

        Commandline commandline = new Commandline();

        getLog().debug( "NMaven-test: workingDirectory(" + testAssemblies.getAbsolutePath() + ")" );

        commandline.setWorkingDirectory( testAssemblies.getAbsolutePath() );
        if ( vendor.equals( Vendor.MICROSOFT ) )
        {
            commandline.setExecutable( "nunit-console" );
        }
        else if ( vendor.equals( Vendor.NOVELL ) )
        {
            commandline.setExecutable( "nunit-console2" );
        }
        else
        {
View Full Code Here

TOP

Related Classes of org.apache.maven.dotnet.Vendor

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.