Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isProjectRequired (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

                            mojoDescriptorCreator.getMojoDescriptor(task, session, session.getTopLevelProject());
    
                    boolean aggregating = mojoDescriptor.isAggregator() || !mojoDescriptor.isProjectRequired();
    
                    if (currentSegment == null || currentSegment.isAggregating() != aggregating) {
                        currentSegment = new TaskSegment(aggregating);
                        taskSegments.add(currentSegment);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            } catch (PluginIncompatibleException e) {
                throw new LifecycleExecutionException(messageBuilderFactory, mojoExecution, session.getCurrentProject(), e);
            }
    
            if (mojoDescriptor.isProjectRequired() && !session.getRequest().isProjectPresent()) {
                Throwable cause = new MissingProjectException(
                        "Goal requires a project to execute" + " but there is no POM in this directory ("
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jun 12 14:55:55 GMT 2025
    - 21K bytes
    - Click Count (0)
Back to Top