- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ProjectCycleException (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
} catch (final CycleDetectedException e) { String message = "The projects in the reactor contain a cyclic reference: " + e.getMessage(); ProjectCycleException error = new ProjectCycleException(message, e); return Result.error( Collections.singletonList(new DefaultModelProblem(null, null, null, null, 0, 0, error))); } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 18.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
} catch (RuntimeException e) { // TODO Hack to make the cycle detection the same for the new graph builder if (e.getCause() instanceof ProjectCycleException) { result = addExceptionToResult(new DefaultMavenExecutionResult(), e.getCause()); } else { result = addExceptionToResult(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon May 05 16:58:52 UTC 2025 - 28.7K bytes - Viewed (1)