- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 63 for REACTOR (0.03 sec)
-
impl/maven-core/src/main/java/org/apache/maven/DuplicateProjectException.java
*/ package org.apache.maven; import java.io.File; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; /** * Signals a collision of two or more projects with the same g:a:v during a reactor build. * */ public class DuplicateProjectException extends MavenExecutionException { private Map<String, List<File>> collisions; /** * Creates a new exception with specified details. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
// Reactor Failure Mode // ---------------------------------------------------------------------- String REACTOR_FAIL_FAST = "FAIL_FAST"; String REACTOR_FAIL_AT_END = "FAIL_AT_END"; String REACTOR_FAIL_NEVER = "FAIL_NEVER"; // ---------------------------------------------------------------------- // Reactor Make ModeRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 18.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/InternalMavenSession.java
} List<Project> getProjects(List<org.apache.maven.project.MavenProject> projects); /** * May return null if the input project is null or is not part of the reactor. */ @Nullable Project getProject(org.apache.maven.project.MavenProject project); List<org.apache.maven.artifact.repository.ArtifactRepository> toArtifactRepositories(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Mar 24 14:09:05 UTC 2025 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java
*/ public interface Builder { // // Be nice to whittle this down to Session, maybe add task segments to the session. The session really is // the place to store reactor related information. // void build( MavenSession session, ReactorContext reactorContext, ProjectBuildList projectBuilds, List<TaskSegment> taskSegments,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorContext.java
* under the License. */ package org.apache.maven.lifecycle.internal; import org.apache.maven.execution.MavenExecutionResult; /** * Context that is fixed for the entire reactor build. * * @since 3.0 * NOTE: This class is not part of any public api and can be changed or deleted without prior notice. */ public class ReactorContext { private final MavenExecutionResult result;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java
* under the License. */ package org.apache.maven.execution; import java.time.Duration; import org.apache.maven.project.MavenProject; /** * Summarizes the result of a successful project build in the reactor. * */ public class BuildSuccess extends BuildSummary { /** * Creates a new build summary for the specified project. * * @param project The project being summarized, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
* under the License. */ package org.apache.maven.execution; import java.time.Duration; import org.apache.maven.project.MavenProject; /** * Summarizes the result of a failed project build in the reactor. * */ public class BuildFailure extends BuildSummary { /** * The cause of the build failure. */ private final Throwable cause; /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
if (t instanceof Exception exception && !(t instanceof RuntimeException)) { eventCatapult.fire(ExecutionEvent.Type.ProjectFailed, currentSession, null, exception); } // reactor failure modes if (t instanceof RuntimeException || !(t instanceof Exception)) { // fail fast on RuntimeExceptions, Errors and "other" Throwables
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
// // 4) Create MavenSession. // // 5) Execute AbstractLifecycleParticipant.afterSessionStart(session) // // 6) Get reactor projects looking for general POM errors // // 7) Create ProjectDependencyGraph using trimming which takes into account --projects and reactor mode. // This ensures that the projects passed into the ReactorReader are only those specified. //Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon May 05 16:58:52 UTC 2025 - 28.7K bytes - Viewed (1)