- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 67 for MojoExecution (0.07 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java
*/ <T> T getConfiguredMojo(Class<T> mojoInterface, MavenSession session, MojoExecution mojoExecution) throws PluginConfigurationException, PluginContainerException; /** * Releases the specified mojo back to the container. * * @param mojo The mojo to release, may be {@code null}. * @param mojoExecution The mojo execution the mojo was originally retrieved for, must not be {@code null}. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.6K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/PhaseRecorderTest.java
MavenExecutionPlan plan = LifecycleExecutionPlanCalculatorStub.getProjectAExecutionPlan(); final List<MojoExecution> executions = plan.getMojoExecutions(); final MojoExecution mojoExecution1 = executions.get(0); final MojoExecution mojoExecution2 = executions.get(1); phaseRecorder.observeExecution(mojoExecution1);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
List<MojoExecution> executionPlan = getExecutions(calculateExecutionPlan(session, "resources:resources")); assertEquals(1, executionPlan.size()); MojoExecution mojoExecution = executionPlan.get(0); assertNotNull(mojoExecution); assertEquals( "org.apache.maven.plugins", mojoExecution.getMojoDescriptor().getPluginDescriptor().getGroupId());
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 22.9K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/BuildPluginManagerStub.java
import java.util.List; import org.apache.maven.execution.MavenSession; import org.apache.maven.model.Plugin; import org.apache.maven.plugin.BuildPluginManager; import org.apache.maven.plugin.MojoExecution; import org.apache.maven.plugin.descriptor.MojoDescriptor; import org.apache.maven.plugin.descriptor.PluginDescriptor; import org.codehaus.plexus.classworlds.realm.ClassRealm; import org.eclipse.aether.RepositorySystemSession;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
} return plugin; } @Override public void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session) {} @Override public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) { return Collections.emptyList(); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.6K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
MojoExecution mojoExecution = newMojoExecution(session); return new PluginParameterExpressionEvaluatorV4( session, project != null ? new DefaultProject(session, project) : null, mojoExecution); } private MojoExecution newMojoExecution(Session session) { PluginDescriptor pd = new PluginDescriptor();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 19.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildStep.java
import java.util.stream.Stream; import org.apache.maven.api.Lifecycle; import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.plugin.MojoExecution; import org.apache.maven.project.MavenProject; public class BuildStep { public static final int CREATED = 0; public static final int PLANNING = 1; public static final int SCHEDULED = 2;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Apr 30 16:21:08 GMT 2025 - 4.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ExecutionEvent.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.execution; import org.apache.maven.plugin.MojoExecution; import org.apache.maven.project.MavenProject; /** * Holds data relevant for an execution event. * */ public interface ExecutionEvent { /** * The possible types of execution events.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 29 20:53:26 GMT 2024 - 2.5K bytes - Click Count (0) -
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) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 3.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecutionRunner.java
/** * Provides context for mojo execution. Invocation of {@link #run(MojoExecution)} will result in actual execution */ public interface MojoExecutionRunner { /** * Runs mojo execution * * @param execution mojo execution * @throws LifecycleExecutionException */ void run(MojoExecution execution) throws LifecycleExecutionException;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.2K bytes - Click Count (0)