Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isForking (0.03 sec)

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

                        LifecyclePhaseNotFoundException, LifecycleNotFoundException, PluginVersionResolutionException {
            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            if (!mojoDescriptor.isForking()) {
                return;
            }
    
            alreadyPlannedExecutions.add(mojoDescriptor);
    
            List<MavenProject> forkedProjects =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this.threadSafe = threadSafe;
        }
    
        /**
         * @return {@code true} if this mojo forks either a goal or the lifecycle, {@code false} otherwise.
         */
        public boolean isForking() {
            return (getExecuteGoal() != null && !getExecuteGoal().isEmpty())
                    || (getExecutePhase() != null && !getExecutePhase().isEmpty());
        }
    
        public boolean isV4Api() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 21.7K bytes
    - Viewed (0)
Back to top