Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 352 for Lifecycle (0.77 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.pom.sha1

    John Dennis Casey <******@****.***> 1192732686 +0000
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Oct 18 18:38:06 GMT 2007
    - 40 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.pom.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.pom.sha1

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 40 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

    import java.util.List;
    
    import org.apache.maven.api.Lifecycle;
    import org.apache.maven.api.model.Plugin;
    import org.apache.maven.api.model.PluginExecution;
    
    public class Lifecycles {
    
        static Lifecycle.Phase phase(String name) {
            return new DefaultPhase(name, Collections.emptyList(), Collections.emptyList());
        }
    
        static Lifecycle.Phase phase(String name, Plugin plugin) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/lifecycles.apt.vm

    ~~ under the License.
    
     -----
     Lifecycles Reference
     -----
     Hervé Boutemy
     -----
     2013-08-02
     -----
    
    Lifecycles Reference
    
      Maven defines 4 lifecycles in {{{./apidocs/org/apache/maven/lifecycle/providers/package-summary.html}<<<org.apache.maven.lifecycle.providers>>>}} package:
    
    %{toc|fromDepth=2}
    
    * <<<default>>> Lifecycle
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Jan 08 14:57:39 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

            // so that they don't interfere with internally defined lifecycles.
    
            Map<String, Lifecycle> phaseToLifecycleMap = new HashMap<>();
    
            for (Lifecycle lifecycle : getLifeCycles()) {
                logger.debug("Lifecycle {}", lifecycle);
    
                for (String phase : lifecycle.getPhases()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/default-bindings.apt.vm

    ~~ under the License.
    
     ---
     Plugins Bindings for Default Lifecycle Reference
     ---
     Hervé Boutemy
     ---
     2013-08-02
     ---
    
    Plugins Bindings for <<<default>>> Lifecycle Reference
    
      The {{{./lifecycles.html}<<<default>>> lifecycle}} is defined without any plugin binding; plugins bindings are defined separately
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 08 17:45:23 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java

        @Nonnull
        String goal() default "";
    
        /**
         * Lifecycle id of the lifecycle that defines {@link #phase()}. Only valid in combination with {@link #phase()}. If
         * not specified, Maven will use the lifecycle of the current build.
         *
         * @see <a href="https://maven.apache.org/maven-plugin-api/lifecycle-mappings.html">Lifecycle Mappings</a>
         * @return the lifecycle id
         */
        @Nonnull
        String lifecycle() default "";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.lifecycle.LifecycleNotFoundException;
    import org.apache.maven.lifecycle.LifecyclePhaseNotFoundException;
    import org.apache.maven.lifecycle.MavenExecutionPlan;
    import org.apache.maven.lifecycle.internal.DefaultLifecyclePluginAnalyzer;
    import org.apache.maven.lifecycle.internal.ExecutionEventCatapult;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/AbstractLifecycleMappingProvider.java

     * under the License.
     */
    package org.apache.maven.lifecycle.providers.packaging;
    
    import javax.inject.Provider;
    
    import java.util.Collections;
    import java.util.HashMap;
    
    import org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping;
    import org.apache.maven.lifecycle.mapping.Lifecycle;
    import org.apache.maven.lifecycle.mapping.LifecycleMapping;
    import org.apache.maven.lifecycle.mapping.LifecyclePhase;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 15:34:45 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top