Package org.apache.maven.lifecycle.internal

Examples of org.apache.maven.lifecycle.internal.BuildThreadFactory


                       List<TaskSegment> taskSegments, ReactorBuildStatus reactorBuildStatus )
        throws ExecutionException, InterruptedException
    {
        ExecutorService executor =
            Executors.newFixedThreadPool( Math.min( session.getRequest().getDegreeOfConcurrency(),
                                                    session.getProjects().size() ), new BuildThreadFactory() );
        CompletionService<ProjectSegment> service = new ExecutorCompletionService<ProjectSegment>( executor );
        ConcurrencyDependencyGraph analyzer =
            new ConcurrencyDependencyGraph( projectBuilds, session.getProjectDependencyGraph() );
       
        // Currently disabled
View Full Code Here

TOP

Related Classes of org.apache.maven.lifecycle.internal.BuildThreadFactory

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.