- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getMojoExecutions (0.1 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
for (ExecutionPlanItem executionPlanItem : planItems) { result.add(executionPlanItem.getLifecyclePhase()); } return result; } public List<MojoExecution> getMojoExecutions() { List<MojoExecution> result = new ArrayList<>(); for (ExecutionPlanItem executionPlanItem : planItem) { result.add(executionPlanItem.getMojoExecution()); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java
MavenExecutionPlan executionPlan = builderCommon.resolveBuildPlan(session, currentProject, taskSegment, new HashSet<>()); List<MojoExecution> mojoExecutions = executionPlan.getMojoExecutions(); projectExecutionListener.beforeProjectLifecycleExecution( new ProjectExecutionEvent(session, currentProject, mojoExecutions));Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 20:01:00 GMT 2025 - 5.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java
logger.debug("=== PROJECT BUILD PLAN ================================================"); logger.debug("Project: " + BuilderCommon.getKey(currentProject)); debugDependencyRequirements(executionPlan.getMojoExecutions()); logger.debug("Repositories (dependencies): " + currentProject.getRemoteProjectRepositories()); logger.debug("Repositories (plugins) : " + currentProject.getRemotePluginRepositories());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
} } final String defaulModelId = DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID; List<String> unversionedPlugins = executionPlan.getMojoExecutions().stream() .map(MojoExecution::getPlugin) .filter(p -> p.getLocation("version") != null && p.getLocation("version").getSource() != nullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 10.3K bytes - Click Count (0)