Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for aggregator (0.16 sec)

  1. compat/maven-model-builder/src/test/resources/poms/validation/invalid-aggregator-packaging-pom.xml

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 997 bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

            msgs.add("* An aggregator Mojo is already executing in parallel build,    *");
            msgs.add("* but aggregator Mojos require exclusive access to reactor to   *");
            msgs.add("* prevent race conditions. This mojo execution will be blocked  *");
            msgs.add("* until the aggregator work is done.                            *");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/test/resources/plugin.xml

          <requiresDirectInvocation>false</requiresDirectInvocation>
          <requiresProject>true</requiresProject>
          <requiresReports>false</requiresReports>
          <aggregator>false</aggregator>
          <requiresOnline>false</requiresOnline>
          <inheritedByDefault>true</inheritedByDefault>
          <phase>package</phase>
          <implementation>org.apache.maven.plugin.jar.JarMojo</implementation>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this.executeLifecycle = executeLifecycle;
        }
    
        /**
         * @param aggregator <code>true</code> if the Mojo uses the Maven project and its child modules,
         * <code>false</code> otherwise.
         */
        public void setAggregator(boolean aggregator) {
            this.aggregator = aggregator;
        }
    
        /**
         * @return <code>true</code> if the Mojo uses the Maven project and its child modules,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            ProjectLock(MavenSession session, MojoDescriptor mojoDescriptor) {
                mojos.put(Thread.currentThread(), mojoDescriptor);
                boolean aggregator = mojoDescriptor.isAggregator();
                acquiredAggregatorLock = aggregator ? aggregatorLock.writeLock() : aggregatorLock.readLock();
                acquiredProjectLock = getProjectLock(session);
                if (!acquiredAggregatorLock.tryLock()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
  6. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            if (requiresReports != null) {
                mojo.setRequiresReports(Boolean.parseBoolean(requiresReports));
            }
    
            String aggregator = c.getChild("aggregator").getValue();
    
            if (aggregator != null) {
                mojo.setAggregator(Boolean.parseBoolean(aggregator));
            }
    
            String requiresOnline = c.getChild("requiresOnline").getValue();
    
            if (requiresOnline != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"log_aggregator"}}
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * the {@code /project/subprojects/subproject} elements of the POM in the aggregator project.
     * Note that the aggregator project is required to have a {@code pom} packaging.</p>
     *
     * <p><dfn>Project inheritance</dfn> defines a parent-child relationship between projects.
     * The <dfn>child project</dfn> inherits all the information from the <dfn>parent project</dfn>
     * POM.</p>
     *
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:13:42 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                    scenario("Selected aggregator project (including child modules)")
                            .activeRequiredProjects(MODULE_C)
                            .expectResult(MODULE_C, MODULE_C_1, MODULE_C_2),
                    scenario("Selected aggregator project with non-recursive")
                            .activeRequiredProjects(MODULE_C)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 20:39:03 UTC 2025
    - 28K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            this.messageBuilderFactory = messageBuilderFactory;
        }
    
        public static List<MavenProject> getProjects(MavenProject project, MavenSession session, boolean aggregator) {
            if (aggregator && project.getCollectedProjects() != null) {
                // get the unsorted list of wanted projects
                Set<MavenProject> projectAndSubmodules = new HashSet<>(project.getCollectedProjects());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top