- Sort Score
- Result 10 results
- Languages All
Results 11 - 13 of 13 for getMojos (0.03 sec)
-
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) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
assertNotNull(event.getSession()); assertNotNull(event.getProject()); assertNotNull(event.getExecution()); assertNotNull(event.getMojo()); assertNull(event.getCause()); log.add("beforeMojoExecution " + event.getProject().getArtifactId() + ":" + event.getExecution().getExecutionId()); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (0) -
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)