Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProjectBuildList (0.28 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

            private volatile boolean running;
    
            private final ProjectBuildList projectBuildList;
    
            ConsolePrinter(ProjectBuildList projectBuildList) {
                this.projectBuildList = projectBuildList;
            }
    
            public void run() {
                running = true;
                for (ProjectSegment projectBuild : projectBuildList) {
                    final PrintStream projectStream = printStreams.get(projectBuild);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K 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)
Back to top