- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for LifecycleExecutionException (0.14 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java
import java.util.Objects; import java.util.Set; import org.apache.maven.RepositoryUtils; import org.apache.maven.artifact.Artifact; import org.apache.maven.impl.cache.Cache; import org.apache.maven.lifecycle.LifecycleExecutionException; import org.apache.maven.lifecycle.internal.SetWithResolutionResult; import org.apache.maven.project.MavenProject; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.LocalRepository;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 8.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
* @param step The build step to execute * @throws IOException If there's an IO error during execution * @throws LifecycleExecutionException If there's a lifecycle execution error */ private void executeStep(BuildStep step) throws IOException, LifecycleExecutionException { Clock clock = getClock(step.project); switch (step.name) { case PLAN:Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.execution; import java.util.Optional; import org.apache.maven.lifecycle.LifecycleExecutionException; import org.apache.maven.model.Dependency; import org.apache.maven.project.MavenProject; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import static java.util.Arrays.asList;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 5.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
} }; ProjectExecutionListener projectListener = new ProjectExecutionListener() { @Override public void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException { assertNotNull(event.getSession()); assertNotNull(event.getProject()); assertNull(event.getExecutionPlan()); assertNull(event.getCause());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
logSummary(context, summary, references, ""); if (exception instanceof LifecycleExecutionException lifecycleExecutionException) { failedProjects.add(lifecycleExecutionException.getProject()); } } context.logger.error(""); if (!context.options().showErrors().orElse(false)) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
logSummary(summary, references, "", cliRequest.showErrors); if (exception instanceof LifecycleExecutionException lifecycleExecutionException) { failedProjects.add(lifecycleExecutionException.getProject()); } } slf4jLogger.error(""); if (!cliRequest.showErrors) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)