Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top