Package org.apache.maven.continuum.scm.queue

Examples of org.apache.maven.continuum.scm.queue.CheckOutTask


        if ( project == null )
        {
            project = projectDao.getProject( getProjectId( context ) );
        }

        CheckOutTask checkOutTask = new CheckOutTask( project.getId(), workingDirectoryService
            .getWorkingDirectory( project ), project.getName(), project.getScmUsername(), project.getScmPassword() );

        checkOutQueue.put( checkOutTask );
    }
View Full Code Here


    public void execute( Map context )
        throws Exception
    {
        Project project = store.getProject( getProjectId( context ) );

        CheckOutTask checkOutTask =
            new CheckOutTask( project.getId(), workingDirectoryService.getWorkingDirectory( project ), project.getName() );

        checkOutQueue.put( checkOutTask );
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.continuum.scm.queue.CheckOutTask

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.