- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 67 for MojoExecution (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java
import org.apache.maven.api.plugin.descriptor.MojoDescriptor; import org.apache.maven.api.xml.XmlNode; /** * A {@code MojoExecution} represents a single execution of a Maven Plugin during a given build. * An instance of this object is bound to the {@link org.apache.maven.api.di.MojoExecutionScoped} * and available as {@code mojoExecution} within {@link org.apache.maven.api.plugin.annotations.Parameter} * expressions. * * @since 4.0.0 */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
*/ private Map<String, List<MojoExecution>> forkedExecutions = new LinkedHashMap<>(); public MojoExecution(Plugin plugin, String goal, String executionId) { this.plugin = plugin; this.goal = goal; this.executionId = executionId; } public MojoExecution(MojoDescriptor mojoDescriptor) { this.mojoDescriptor = mojoDescriptor;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java
MojoDescriptor mojoDescriptor = new MojoDescriptor(); mojoDescriptor.setPluginDescriptor(pluginDescriptor); MojoExecution mojoExecution = new MojoExecution(mojoDescriptor); Throwable exception = new PluginExecutionException(mojoExecution, null, cause); DefaultExceptionHandler handler = new DefaultExceptionHandler(); ExceptionSummary summary = handler.handleException(exception);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionEventCatapult.java
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/DefaultMojoExecutionConfigurator.java
return null; } private void checkUnknownMojoConfigurationParameters(MojoExecution mojoExecution) { if (mojoExecution.getConfiguration() == null || mojoExecution.getConfiguration().getChildCount() == 0) { return; } MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor(); // in first step get parameter names of current goalRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 7.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java
this(session, project, null); } public PluginParameterExpressionEvaluatorV4(Session session, Project project, MojoExecution mojoExecution) { this.session = session; this.mojoExecution = mojoExecution; this.properties = session.getEffectiveProperties(project); this.project = project; Path basedir = null; if (project != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 9.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
lifecycleExecutionPlanCalculator.calculateForkedExecutions(mojoExecution, session); } // Site 3.x @Override public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) throws LifecycleExecutionException { return mojoExecutor.executeForkedExecutions(mojoExecution, session); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.1K bytes - Viewed (0) -
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(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
fillMojoDescriptor(session, project, mojoExecution); mojoExecutionConfigurator(mojoExecution) .configure(project, mojoExecution, MojoExecution.Source.CLI.equals(mojoExecution.getSource())); finalizeMojoConfiguration(mojoExecution); calculateForkedExecutions(mojoExecution, session, project, alreadyPlannedExecutions); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 26.7K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ExecutionEventCatapultStub.java
import org.apache.maven.plugin.MojoExecution; /** */ public class ExecutionEventCatapultStub implements ExecutionEventCatapult { @Override public void fire(Type eventType, MavenSession session, MojoExecution mojoExecution) {} @Override public void fire(Type eventType, MavenSession session, MojoExecution mojoExecution, Exception exception) {}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.4K bytes - Viewed (0)