Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getLifecycleMapping (0.48 sec)

  1. compat/maven-plugin-api/pom.xml

            <configuration>
              <parameter>
                <excludes>
                  <exclude>org.apache.maven.plugin.lifecycle</exclude>
                  <exclude>org.apache.maven.plugin.descriptor.PluginDescriptor#getLifecycleMapping(java.lang.String)</exclude>
                </excludes>
              </parameter>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                return;
            }
    
            org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle lifecycleOverlay;
    
            try {
                lifecycleOverlay = pluginDescriptor.getLifecycleMapping(forkedLifecycle);
            } catch (IOException | XMLStreamException e) {
                throw new PluginDescriptorParsingException(pluginDescriptor.getPlugin(), pluginDescriptor.getSource(), e);
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            return pluginArtifact;
        }
    
        public void setPluginArtifact(Artifact pluginArtifact) {
            this.pluginArtifact = pluginArtifact;
        }
    
        public Lifecycle getLifecycleMapping(String lifecycleId) throws IOException, XMLStreamException {
            return getLifecycleMappings().get(lifecycleId);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                        org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle lifecycleOverlay;
                        try {
                            lifecycleOverlay = pluginDescriptor.getLifecycleMapping(forkedLifecycle);
                        } catch (IOException | XMLStreamException e) {
                            throw new MavenException(new PluginDescriptorParsingException(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top