Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isProjectRequired (0.05 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this.setInheritedByDefault(md.isInheritedByDefault());
            this.setPhase(md.getPhase());
            this.setOnlineRequired(md.isOnlineRequired());
            this.setProjectRequired(md.isProjectRequired());
            this.setSince(md.getSince());
            this.setThreadSafe(true);
            this.setImplementation(md.getImplementation());
            try {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 21.7K bytes
    - Viewed (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 ("
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top