Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 15 of 15 for LifecyclePhase (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/providers/AbstractLifecycleProvider.java

    import org.apache.maven.lifecycle.mapping.LifecyclePhase;
    
    /**
     * Base lifecycle provider.
     */
    public abstract class AbstractLifecycleProvider implements Provider<Lifecycle> {
        private final Lifecycle lifecycle;
    
        protected AbstractLifecycleProvider(String id, String[] phases, String[] pluginBindings) {
            HashMap<String, LifecyclePhase> defaultBindings = null;
            if (pluginBindings != null) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.2K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleMappingDelegate.java

     */
    public interface LifecycleMappingDelegate {
        Map<String, List<MojoExecution>> calculateLifecycleMappings(
                MavenSession session, MavenProject project, Lifecycle lifecycle, String lifecyclePhase)
                throws PluginNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
                        MojoNotFoundException, InvalidPluginDescriptorException;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *          values. (Elements like this are why it's a good idea to use the descriptor tools.)</i>
     *      </td>
     *   </tr>
     *   <tr>
     *      <td>phase</td>
     *      <td>defaultPhase = LifecyclePhase.&lt;phase&gt;</td>
     *      <td>No</td>
     *      <td>Binds this Mojo to a particular phase of the standard build lifecycle, if specified.
     *          <br>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                                @Override
                                public List<Plugin> plugins() {
                                    Map<String, LifecyclePhase> lfPhases = lifecycle.getDefaultLifecyclePhases();
                                    LifecyclePhase phase = lfPhases != null ? lfPhases.get(name) : null;
                                    if (phase != null) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 20.1K bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * used by plugins.
         *
         * @param lifecyclePhase The lifecycle phase to add, must not be {@code null}.
         */
        public void addLifecyclePhase(String lifecyclePhase) {
            lifecyclePhases.add(lifecyclePhase);
        }
    
        // ----------------------------------------------------------------------------------------------------------------
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
Back to Top