- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 67 for mojoExecution (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutionException.java
super(message); this.project = project; } public LifecycleExecutionException(String message, MojoExecution execution, MavenProject project, Throwable cause) { super(message, cause); this.project = project; } public LifecycleExecutionException(MojoExecution execution, MavenProject project, Throwable cause) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MojoExecutionConfigurator.java
/** * Create the MojoExecution configuration based on configuration for a Mojo in the MavenProject and the * default configuration for the Mojo from the containing plugin's plugin.xml descriptor. * * @param project * @param mojoExecution * @param allowPluginLevelConfig */ void configure(MavenProject project, MojoExecution mojoExecution, boolean allowPluginLevelConfig);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseRecorder.java
private final MavenProject project; public PhaseRecorder(MavenProject project) { this.project = project; } public void observeExecution(MojoExecution mojoExecution) { String lifecyclePhase = mojoExecution.getLifecyclePhase(); if (lifecyclePhase != null) { PhaseId phaseId = PhaseId.of(lifecyclePhase); if (lastLifecyclePhase == null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionEvent.java
private final MavenProject project; private final List<MojoExecution> executionPlan; private final Throwable cause; public ProjectExecutionEvent(MavenSession session, MavenProject project) { this(session, project, null, null); } public ProjectExecutionEvent(MavenSession session, MavenProject project, List<MojoExecution> executionPlan) { this(session, project, executionPlan, null); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultMojosExecutionStrategy.java
@Singleton public class DefaultMojosExecutionStrategy implements MojosExecutionStrategy { @Override public void execute(List<MojoExecution> mojos, MavenSession session, MojoExecutionRunner mojoRunner) throws LifecycleExecutionException { for (MojoExecution mojoExecution : mojos) { mojoRunner.run(mojoExecution); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java
List<MojoExecution> mojoExecutions = executionPlan.getMojoExecutions(); projectExecutionListener.beforeProjectLifecycleExecution( new ProjectExecutionEvent(session, currentProject, mojoExecutions)); mojoExecutor.execute(session, mojoExecutions); Instant buildEndTime = MonotonicClock.now();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 5.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
} } @Override public void releaseMojo(Object mojo, MojoExecution mojoExecution) { if (mojo != null) { try { container.release(mojo); } catch (ComponentLifecycleException e) { String goalExecId = mojoExecution.getGoal(); if (mojoExecution.getExecutionId() != null) { logger.debug(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
MojoDescriptor mojo = new MojoDescriptor(); mojo.setPluginDescriptor(pluginDescriptor); mojo.setGoal("goal"); MojoExecution mojoExecution = new MojoExecution(mojo); return new PluginParameterExpressionEvaluator(session, mojoExecution); } protected Artifact createArtifact(String groupId, String artifactId, String version) throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java
public class DefaultMojoExecution implements MojoExecution { private final InternalMavenSession session; private final org.apache.maven.plugin.MojoExecution delegate; public DefaultMojoExecution(InternalMavenSession session, org.apache.maven.plugin.MojoExecution delegate) { this.session = session; this.delegate = delegate; } public org.apache.maven.plugin.MojoExecution getDelegate() { return delegate;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 5.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlan.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 12:11:25 UTC 2025 - 6.1K bytes - Viewed (0)