- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 56 for mojoExecution (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginExecutionException.java
this.mojoExecution = mojoExecution; } public PluginExecutionException(MojoExecution mojoExecution, MavenProject project, Exception cause) { super(mojoExecution.getMojoDescriptor(), project, constructMessage(mojoExecution, cause), cause); this.mojoExecution = mojoExecution; } public PluginExecutionException(Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java
} return null; } private void addMojoExecution( Map<PhaseId, List<MojoExecution>> phaseBindings, MojoExecution mojoExecution, PhaseId phaseId) { List<MojoExecution> mojoExecutions = phaseBindings.computeIfAbsent(phaseId, k -> new ArrayList<>()); mojoExecutions.add(mojoExecution); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Dec 13 23:04:37 GMT 2024 - 8.5K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java
messageBuilderFactory); } @Override public void execute(MavenSession session, List<MojoExecution> mojoExecutions) throws LifecycleExecutionException { executions.addAll(mojoExecutions); } @Override public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) throws LifecycleExecutionException { return null; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 3.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java
* * @since 3.0 */ public class ExecutionPlanItem { private final MojoExecution mojoExecution; public ExecutionPlanItem(MojoExecution mojoExecution) { this.mojoExecution = mojoExecution; } public static List<ExecutionPlanItem> createExecutionPlanItems( MavenProject mavenProject, List<MojoExecution> executions) { BuilderCommon.attachToThread(mavenProject);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.5K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanCreatorTest.java
plan.requiredStep(project, "after:test-resources").addMojo(new MojoExecution(null), 0); plan.requiredStep(project, "compile").addMojo(new MojoExecution(null), 0); plan.requiredStep(project, "test-compile").addMojo(new MojoExecution(null), 0); plan.requiredStep(project, "test").addMojo(new MojoExecution(null), 0);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 28 15:21:19 GMT 2025 - 7.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanLogger.java
protected void mojo(Consumer<String> writer, MojoExecution mojoExecution) { String mojoExecId = mojoExecution.getGroupId() + ':' + mojoExecution.getArtifactId() + ':' + mojoExecution.getVersion() + ':' + mojoExecution.getGoal() + " (" + mojoExecution.getExecutionId() + ')'; Map<String, List<MojoExecution>> forkedExecutions = mojoExecution.getForkedExecutions();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 7.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultExecutionEvent.java
this.type = type; this.session = session; this.mojoExecution = mojoExecution; this.exception = exception; } @Override public Type getType() { return type; } @Override public MavenSession getSession() { return session; } @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
final MojoExecution mojoExecution = executionPlanItem.getMojoExecution(); if (!mojoExecution.getMojoDescriptor().isThreadSafe()) { mojos.add(mojoExecution.getMojoDescriptor()); } } return mojos; } // Used by m2e but will be removed, really. @Deprecated public List<MojoExecution> getExecutions() {
Created: Sun Dec 28 03:35:09 GMT 2025 - 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/concurrent/BuildPlanExecutor.java
plan.step(project, resolvedPhase).ifPresent(n -> { MojoExecution mojoExecution = new MojoExecution(mojoDescriptor, execution.getId()); mojoExecution.setLifecyclePhase(phase); n.addMojo(mojoExecution, execution.getPriority()); if (mojoDescriptor.getDependencyCollectionRequired() != null
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java
this(session, null); } public PluginParameterExpressionEvaluator(MavenSession session, MojoExecution mojoExecution) { this.session = session; this.mojoExecution = mojoExecution; this.properties = new Properties(); this.project = session.getCurrentProject(); //
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 16.6K bytes - Click Count (0)