Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getMojos (0.03 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/MojoExecutionEvent.java

            return session;
        }
    
        public MavenProject getProject() {
            return project;
        }
    
        public MojoExecution getExecution() {
            return mojoExecution;
        }
    
        public Mojo getMojo() {
            return mojo;
        }
    
        public Throwable getCause() {
            return cause;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                String phase = mojoDescriptor.getExecutePhase();
                // We have a fork goal
                if (forkedGoal != null && !forkedGoal.isEmpty()) {
                    MojoDescriptor forkedMojoDescriptor = pluginDescriptor.getMojo(forkedGoal);
                    if (forkedMojoDescriptor == null) {
                        throw new MavenException(new MojoNotFoundException(forkedGoal, pluginDescriptor));
                    }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top