Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for LifecycleMapping (0.23 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecycleMapping.java

     * under the License.
     */
    package org.apache.maven.lifecycle.mapping;
    
    import java.util.List;
    import java.util.Map;
    
    /**
     * LifecycleMapping
     */
    public interface LifecycleMapping {
    
        @Deprecated
        String ROLE = LifecycleMapping.class.getName();
    
        Map<String, Lifecycle> getLifecycles();
    
        @Deprecated
        List<String> getOptionalMojos(String lifecycle);
    
        @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/AbstractLifecycleMappingProvider.java

            lifecycle.setId("default");
            lifecycle.setLifecyclePhases(Collections.unmodifiableMap(lifecyclePhaseBindings));
    
            this.lifecycleMapping = new DefaultLifecycleMapping(Collections.singletonList(lifecycle));
        }
    
        @Override
        public LifecycleMapping get() {
            return lifecycleMapping;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 15:34:45 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

        }
    
        private Map<String, LifecyclePhase> getLifecyclePhases(String lifecycle) {
            initLifecycleMap();
    
            Lifecycle lifecycleMapping = lifecycleMap.get(lifecycle);
    
            if (lifecycleMapping != null) {
                return lifecycleMapping.getLifecyclePhases();
            } else if ("default".equals(lifecycle)) {
                return phases;
            } else {
                return null;
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:46:36 GMT 2024
    - 4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

            if (lifecycleMapping == null) {
                return Optional.empty();
            }
            Type type = typeRegistry.lookup(id).orElse(null);
            if (type == null) {
                return Optional.empty();
            }
            return Optional.of(new DefaultPackaging(id, type, getPlugins(lifecycleMapping)));
        }
    
        private Map<String, PluginContainer> getPlugins(LifecycleMapping lifecycleMapping) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

         * from current module and for example not extensions coming from other modules.
         */
        private LifecycleMapping lookupLifecycleMapping(final String packaging) {
            return lookup.lookupOptional(LifecycleMapping.class, packaging).orElse(null);
        }
    
        private void parseLifecyclePhaseDefinitions(Map<Plugin, Plugin> plugins, String phase, LifecyclePhase goals) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  6. 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.jar

    Apache Maven Built-By: jdcasey Build-Jdk: 1.5.0_07 META-INF/plexus/components.xml org.apache.maven.artifact.handler.ArtifactHandler test org.apache.maven.artifact.handler.DefaultArtifactHandl test jar java true org.apache.maven.lifecycle.mapping.LifecycleMapping test org.apache.maven.lifecycle.mapping.DefaultLifecycleMapp default org.apache.maven.plugins:maven-install-plugin:install org.apache.maven.plugins:maven-deploy-plugin:deploy META-INF/maven/org.apache.maven.core.test/test-lifecycle-and-artifactHandler/pom.xml...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Oct 18 18:38:06 GMT 2007
    - 2.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.jar

    Apache Maven Built-By: jdcasey Build-Jdk: 1.5.0_07 META-INF/plexus/components.xml org.apache.maven.artifact.handler.ArtifactHandler test org.apache.maven.artifact.handler.DefaultArtifactHandl test jar java true org.apache.maven.lifecycle.mapping.LifecycleMapping test org.apache.maven.lifecycle.mapping.DefaultLifecycleMapp default org.apache.maven.plugins:maven-install-plugin:install org.apache.maven.plugins:maven-deploy-plugin:deploy META-INF/maven/org.apache.maven.core.test/test-lifecycle-and-artifactHandler/pom.xml...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

    /**
     * Interface representing a Maven project packaging.
     * <p>
     * TODO: define how to plug in new packaging definitions using the SPI.
     *   the packaging are currently defined by Maven 3 {@code Provider<LifecycleMapping>}
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Packaging extends ExtensibleEnum {
        /**
         * The packaging id.
         */
        @Nonnull
        String id();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top