Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProjectBuildList (1.54 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectBuildList.java

     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     *
     * @since 3.0
     */
    public class ProjectBuildList implements Iterable<ProjectSegment> {
        private final List<ProjectSegment> items;
    
        public ProjectBuildList(List<ProjectSegment> items) {
            this.items = Collections.unmodifiableList(items);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

        public static final MojoDescriptor WRAPPER = createMojoDescriptor("wrapper");
    
        /**
         * @deprecated instead use {@link #getNumberOfExecutions(ProjectBuildList)}
         */
        @Deprecated
        public int getNumberOfExceutions(ProjectBuildList projectBuildList)
                throws InvalidPluginDescriptorException, PluginVersionResolutionException, PluginDescriptorParsingException,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/singlethreaded/SingleThreadedBuilder.java

    import javax.inject.Singleton;
    
    import java.util.List;
    
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.lifecycle.internal.LifecycleModuleBuilder;
    import org.apache.maven.lifecycle.internal.ProjectBuildList;
    import org.apache.maven.lifecycle.internal.ProjectSegment;
    import org.apache.maven.lifecycle.internal.ReactorBuildStatus;
    import org.apache.maven.lifecycle.internal.ReactorContext;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    package org.apache.maven.lifecycle.internal.builder;
    
    import java.util.List;
    import java.util.concurrent.ExecutionException;
    
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.lifecycle.internal.ProjectBuildList;
    import org.apache.maven.lifecycle.internal.ReactorBuildStatus;
    import org.apache.maven.lifecycle.internal.ReactorContext;
    import org.apache.maven.lifecycle.internal.TaskSegment;
    
    /**
     * <p>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleStarter.java

        }
    
        @Override
        public void execute(MavenSession session) {
            eventCatapult.fire(ExecutionEvent.Type.SessionStarted, session, null);
    
            ReactorContext reactorContext = null;
            ProjectBuildList projectBuilds = null;
            MavenExecutionResult result = session.getResult();
    
            try {
                if (buildExecutionRequiresProject(session) && projectIsNotPresent(session)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:56:36 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top