- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ProjectCycleException (0.07 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/test/java/org/apache/maven/DefaultMavenTest.java
createMavenExecutionRequest(getProject("cyclic-reference")).setGoals(asList("validate")); MavenExecutionResult result = maven.execute(request); assertEquals(ProjectCycleException.class, result.getExceptions().get(0).getClass()); } @Test void testMavenProjectNoDuplicateArtifacts() throws Exception {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 4.3K 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)