Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for lifecycles (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

        }
    
        static Lifecycle.Phase phase(
                String name, Lifecycle.Link link1, Lifecycle.Link link2, Lifecycle.Link link3, Lifecycle.Phase... phases) {
            return new DefaultPhase(name, Collections.emptyList(), asList(link1, link2, link3), asList(phases));
        }
    
        static Lifecycle.Phase phase(String name, Collection<Lifecycle.Link> links, Lifecycle.Phase... phases) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 28 15:21:19 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/site/apt/lifecycles.apt.vm

    ~~ under the License.
    
     -----
     Lifecycles Reference
     -----
     Hervé Boutemy
     -----
     2013-08-02
     -----
    
    Lifecycles Reference
    
      Maven defines 3 lifecycles in {{{./apidocs/org/apache/maven/lifecycle/providers/package-summary.html}<<<org.apache.maven.lifecycle.providers>>>}} package:
    
    %{toc|fromDepth=2}
    
    * <<<default>>> Lifecycle
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 08 22:14:18 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

         */
        public Map<String, Lifecycle> getPhaseToLifecycleMap() {
            if (logger.isDebugEnabled() && !lifecyclesPrinted) {
                for (Lifecycle lifecycle : getLifeCycles()) {
                    logger.debug("Lifecycle {}", lifecycle);
                }
                lifecyclesPrinted = true;
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

            List<Lifecycle> myLifecycles = new ArrayList<>();
            Lifecycle myLifecycle =
                    new Lifecycle("etl", Arrays.asList("extract", "transform", "load"), Collections.emptyMap());
            myLifecycles.add(myLifecycle);
            myLifecycles.addAll(defaultLifeCycles.getLifeCycles());
    
            Map<String, Lifecycle> lifeCycles = myLifecycles.stream().collect(Collectors.toMap(Lifecycle::getId, l -> l));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanCreatorTest.java

            projects.put(p1, Collections.emptyList());
            projects.put(p2, Collections.singletonList(p1));
            Lifecycle lifecycle = lifecycles.require("default");
            BuildPlan plan = builder.calculateLifecycleMappings(null, projects, lifecycle, "verify");
            plan.then(builder.calculateLifecycleMappings(null, projects, lifecycle, "install"));
    
            Stream.of(p1, p2).forEach(project -> {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 28 15:21:19 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  6. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LifecycleProvider.java

     * of phases that can be executed during a build.
     * <p>
     * Implementations of this interface will be discovered through the Java ServiceLoader mechanism
     * and their provided lifecycles will be available throughout the Maven build process.
     * <p>
     * Example usage:
     * <pre>
     * public class CustomLifecycleProvider implements LifecycleProvider {
     *     public Collection&lt;Lifecycle&gt; provides() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

    import org.apache.maven.lifecycle.internal.GoalTask;
    import org.apache.maven.lifecycle.internal.LifecycleTask;
    import org.apache.maven.lifecycle.internal.MojoDescriptorCreator;
    import org.apache.maven.lifecycle.internal.MojoExecutor;
    import org.apache.maven.lifecycle.internal.ReactorBuildStatus;
    import org.apache.maven.lifecycle.internal.ReactorContext;
    import org.apache.maven.lifecycle.internal.Task;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

        String AT = "at:";
    
        /**
         * Name or identifier of this lifecycle.
         *
         * @return the unique identifier for this lifecycle
         */
        @Override
        String id();
    
        /**
         * Collection of main phases for this lifecycle.
         *
         * @return the collection of top-level phases in this lifecycle
         */
        Collection<Phase> phases();
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

      xml.namespace="http://maven.apache.org/LIFECYCLE/${version}"
      xml.schemaLocation="https://maven.apache.org/xsd/lifecycle-${version}.xsd">
      <id>lifecycle</id>
      <name>Lifecycle</name>
      <description>
        Configuration of custom lifecycle mappings for the plugin, as generally stored in
        {@code META-INF/maven/lifecycle.xml} in a plugin's jar artifact.
      </description>
      <classes>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

    import static org.apache.maven.api.Lifecycle.Phase.DEPLOY;
    import static org.apache.maven.api.Lifecycle.Phase.EACH;
    import static org.apache.maven.api.Lifecycle.Phase.INITIALIZE;
    import static org.apache.maven.api.Lifecycle.Phase.INSTALL;
    import static org.apache.maven.api.Lifecycle.Phase.INTEGRATION_TEST;
    import static org.apache.maven.api.Lifecycle.Phase.PACKAGE;
    import static org.apache.maven.api.Lifecycle.Phase.READY;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 20.1K bytes
    - Viewed (0)
Back to top