Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setLifecyclePhase (0.67 sec)

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

                            for (String goal : execution.getGoals()) {
                                MojoExecution mojoExecution = new MojoExecution(plugin, goal, execution.getId());
                                mojoExecution.setLifecyclePhase(phase);
                                PhaseId phaseId = PhaseId.of(phase);
                                if (phaseId.priority() == 0) {
    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/plugin/MojoExecution.java

            sb.append(configuration.toString());
    
            return sb.toString();
        }
    
        public String getLifecyclePhase() {
            return lifecyclePhase;
        }
    
        public void setLifecyclePhase(String lifecyclePhase) {
            this.lifecyclePhase = lifecyclePhase;
        }
    
        @Override
        public String toString() {
            StringBuilder buffer = new StringBuilder(128);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top