Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 25 for Aggregating (0.06 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

            private final Set<String> resolve;
    
            private boolean aggregating;
    
            private final int hashCode;
    
            public CacheKey(
                    MavenProject project,
                    List<RemoteRepository> repositories,
                    Collection<String> scopesToCollect,
                    Collection<String> scopesToResolve,
                    boolean aggregating,
                    RepositorySystemSession session) {
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                MavenSession session,
                boolean aggregating,
                Set<Artifact> projectArtifacts)
                throws LifecycleExecutionException {
    
            Set<Artifact> resolvedArtifacts = resolveProjectArtifacts(
                    project, scopesToCollect, scopesToResolve, session, aggregating, projectArtifacts);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/TaskSegment.java

        private final List<Task> tasks;
    
        private final boolean aggregating;
    
        public TaskSegment(boolean aggregating) {
            this.aggregating = aggregating;
            tasks = new ArrayList<>();
        }
    
        public TaskSegment(boolean aggregating, Task... tasks) {
            this.aggregating = aggregating;
            this.tasks = new ArrayList<>(Arrays.asList(tasks));
        }
    
        @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2K bytes
    - Click Count (0)
  4. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleTaskSegmentCalculatorStub.java

            for (String task : tasks) {
                if (AGGR.equals(task)) {
                    boolean aggregating = true;
    
                    if (currentSegment == null || currentSegment.isAggregating() != aggregating) {
                        currentSegment = new TaskSegment(aggregating);
                        taskSegments.add(currentSegment);
                    }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            public NoLock() {}
    
            @Override
            public void close() {}
        }
    
        /**
         * Aggregating mojo executions (possibly) modify all MavenProjects, including those that are currently in use
         * by concurrently running mojo executions. To prevent race conditions, an aggregating execution will block
         * all other executions until finished.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jun 12 14:55:55 GMT 2025
    - 21K bytes
    - Click Count (0)
  6. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolverTest.java

            boolean aggregating = false;
    
            Set<Artifact> reactorArtifacts = new HashSet<>(3);
            for (MavenProject reactorProject : session.getProjects()) {
                reactorProject.setArtifactFilter(artifact -> true);
                resolver.resolveProjectDependencies(
                        reactorProject, scopesToCollect, scopesToResolve, session, aggregating, reactorArtifacts);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3.1K bytes
    - Click Count (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

                logger.debug("Tasks:   " + projectBuild.getTaskSegment().getTasks());
                logger.debug("Style:   " + (projectBuild.getTaskSegment().isAggregating() ? "Aggregating" : "Regular"));
    
                if (it.hasNext()) {
                    logger.debug("-----------------------------------------------------------------------");
                }
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 5.8K bytes
    - Click Count (0)
  8. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator.java

                    boolean aggregating = mojoDescriptor.isAggregator() || !mojoDescriptor.isProjectRequired();
    
                    if (currentSegment == null || currentSegment.isAggregating() != aggregating) {
                        currentSegment = new TaskSegment(aggregating);
                        taskSegments.add(currentSegment);
                    }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Dec 13 23:07:01 GMT 2024
    - 6.3K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/ConcurrentLifecycleStarter.java

                    boolean aggregating = mojoDescriptor.isAggregator() || !mojoDescriptor.isProjectRequired();
    
                    if (currentSegment == null || currentSegment.isAggregating() != aggregating) {
                        currentSegment = new TaskSegment(aggregating);
                        taskSegments.add(currentSegment);
                    }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  10. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    ProjectDependencyGraphStub
    
    Since they define the primary structure of the project/build.
    
    The stubs define three top-level targets that are defined in  LifecycleTaskSegmentCalculatorStub;
    clean, aggr and install. "aggr" is an aggregating task while clean and install are lifecyclephases.
    There will be three items in the task list for this dataset.
    
    The stubs also exist at different "levels", where one test might wire stubs into a specific live implementation.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
Back to Top