Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getProjectBuilds (0.39 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

                        PluginResolutionException, LifecyclePhaseNotFoundException, LifecycleNotFoundException {
            final List<ProjectSegment> list = getProjectBuilds(session);
            return new ProjectBuildList(list);
        }
    
        public static List<ProjectSegment> getProjectBuilds(MavenSession session)
                throws InvalidPluginDescriptorException, PluginVersionResolutionException, PluginDescriptorParsingException,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

         */
        protected Set<MavenProject> getFinishedProjects() {
            return finishedProjects;
        }
    
        protected ProjectBuildList getProjectBuilds() {
            return projectBuilds;
        }
    
        /**
         * For the given {@link MavenProject} {@code p}, return all of {@code p}'s dependencies.
         *
         * @param p
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

            CompletionService<ProjectSegment> service = new ExecutorCompletionService<>(executor);
    
            // Currently disabled
            ThreadOutputMuxer muxer = null; // new ThreadOutputMuxer( analyzer.getProjectBuilds(), System.out );
    
            for (TaskSegment taskSegment : taskSegments) {
                ProjectBuildList segmentProjectBuilds = projectBuilds.getByTaskSegment(taskSegment);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top