Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isGoalSpecification (0.06 sec)

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

                    if (!isGoalSpecification(goal)) {
                        return true;
                    }
                }
            }
            return false;
        }
    
        private boolean isBeforeOrAfterPhase(String task) {
            return task.startsWith(Lifecycle.BEFORE) || task.startsWith(Lifecycle.AFTER);
        }
    
        private boolean isGoalSpecification(String task) {
            return task.indexOf(':') >= 0;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:07:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/ConcurrentLifecycleStarter.java

                    if (!isGoalSpecification(goal)) {
                        return true;
                    }
                }
            }
            return false;
        }
    
        private boolean isBeforeOrAfterPhase(String task) {
            return task.startsWith(Lifecycle.BEFORE) || task.startsWith(Lifecycle.AFTER);
        }
    
        private boolean isGoalSpecification(String task) {
            return task.indexOf(':') >= 0;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top