- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 139 for reactor (0.04 sec)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategyTest.java
// Verify correct behavior for reactor parent: // - groupId should be removed (child has no explicit groupId, parent is in reactor) // - artifactId should be removed (can be inferred from relativePath) // - version should be removed (child has no explicit version, parent is in reactor) assertNull(parentElement.child("groupId").orElse(null));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 35.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
* * @param step The build step to process */ private void processStep(BuildStep step) { // 1. Apply reactor failure behavior to decide whether to schedule or skip ReactorBuildStatus status = reactorContext.getReactorBuildStatus(); boolean isAfterStep = step.name.startsWith(AFTER);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/graph/DefaultGraphBuilderTest.java
.expectResult(MavenExecutionException.class, "empty reactor"), scenario("Excluded aggregator, but selected child") .activeRequiredProjects(MODULE_C_1) .inactiveRequiredProjects(MODULE_C) .expectResult(MavenExecutionException.class, "empty reactor"),
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 20:39:03 UTC 2025 - 28K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
apache-maven/pom.xml
<bomDescription>Bill Of Materials for Apache Maven - Maven JARS only</bomDescription> <outputFilename>maven-skinny-bom.xml</outputFilename> <reactorDependencies>REACTOR</reactorDependencies> <transitiveDependencies>NONE</transitiveDependencies> <usePropertiesForVersion>true</usePropertiesForVersion> <attach>true</attach> </configuration>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Nov 10 03:14:05 UTC 2025 - 12.7K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java
projects = new ProjectSorter(projects).getSortedProjects(); assertEquals(parentProject, projects.get(0)); // the order of these two is non-deterministic, based on when they're added to the reactor. assertTrue(projects.contains(pluginProject), "Expected " + projects + " to contain " + pluginProject); assertTrue( projects.contains(pluginLevelDepProject),Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 12.7K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java
} public int getNumberOfBuilds() { return projectBuilds.size(); } /** * Gets all the builds that have no reactor-dependencies, ordered by critical path priority * * @return A list of all the initial builds, ordered by priority (critical path first) */ public List<MavenProject> getRootSchedulableBuilds() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java
if (reactorContext.getReactorBuildStatus().isHalted()) { break; } // MNG-6170: Only schedule other modules from reactor if we have more modules to build than one. if (analyzer.getNumberOfBuilds() > 1) { final List<MavenProject> newItemsThatCanBeBuilt =
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 16 03:42:09 UTC 2025 - 8.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
/** * An implementation of a workspace reader that knows how to search the Maven reactor for artifacts, either as packaged * jar if it has been built, or only compile output directory if packaging hasn't happened yet. * */ @Named(ReactorReader.HINT) @SessionScoped class ReactorReader implements MavenWorkspaceReader { public static final String HINT = "reactor"; public static final String PROJECT_LOCAL_REPO = "project-local-repo";
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:20:38 UTC 2025 - 24.4K bytes - Viewed (0)