Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for setPhase (0.03 sec)

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

                    // if the phase is specified then I don't have to go fetch the plugin yet and pull it down
                    // to examine the phase it is associated to.
                    String phase = execution.getPhase();
                    if (aliases.containsKey(phase)) {
                        phase = aliases.get(phase);
                    }
                    if (phase != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:04:37 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                                    MojoDescriptor mojoDescriptor = getMojoDescriptor(project, plugin, goal);
                                    String phase =
                                            execution.getPhase() != null ? execution.getPhase() : mojoDescriptor.getPhase();
                                    if (phase == null) {
                                        continue;
                                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertTrue(md.isProjectRequired(), "Expected " + md + ".isProjectRequired() to return true");
            assertFalse(md.isThreadSafe(), "Expected " + md + ".isThreadSafe() to return false");
            assertEquals("package", md.getPhase());
            assertEquals("org.apache.maven.plugin.jar.JarMojo", md.getImplementation());
            assertEquals("antrun", md.getComponentConfigurator());
            assertEquals("java", md.getLanguage());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top