Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getExecuteLifecycle (0.17 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

            if (md.getExecutePhase() != null && !md.getExecutePhase().isEmpty()) {
                // forked phase
                if (md.getExecuteLifecycle() != null && !md.getExecuteLifecycle().isEmpty()) {
                    buff.append('[');
                    buff.append(md.getExecuteLifecycle());
                    buff.append(']');
                }
                buff.append(md.getExecutePhase());
            } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertEquals("per-lookup", md.getInstantiationStrategy());
            assertEquals("some-goal", md.getExecuteGoal());
            assertEquals("generate-sources", md.getExecutePhase());
            assertEquals("cobertura", md.getExecuteLifecycle());
            assertEquals("2.2", md.getSince());
            assertEquals("deprecated-mojo", md.getDeprecated());
            assertEquals(1, md.getRequirements().size());
            assertEquals(1, md.getParameters().size());
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this();
            this.setPluginDescriptor(pd);
            this.setGoal(md.getGoal());
            this.setExecuteGoal(md.getExecuteGoal());
            this.setExecuteLifecycle(md.getExecuteLifecycle());
            this.setExecutePhase(md.getExecutePhase());
            this.setDeprecated(md.getDeprecated());
            this.setLanguage(md.getLanguage());
            this.setAggregator(md.isAggregator());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top