- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for addCircularDependencyException (0.29 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
try { root.addDependencies(artifacts, repositoryRequest.getRemoteRepositories(), filter); } catch (CyclicDependencyException e) { result.addCircularDependencyException(e); return result; } catch (OverConstrainedVersionException e) { result.addVersionRangeViolation(e); return result; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 36.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
public boolean hasCircularDependencyExceptions() { return circularDependencyExceptions != null; } public MetadataResolutionResult addCircularDependencyException(CyclicDependencyException e) { circularDependencyExceptions = initList(circularDependencyExceptions); circularDependencyExceptions.add(e); exceptions = initList(exceptions);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java
public boolean hasCircularDependencyExceptions() { return circularDependencyExceptions != null; } public ArtifactResolutionResult addCircularDependencyException(CyclicDependencyException e) { circularDependencyExceptions = initList(circularDependencyExceptions); circularDependencyExceptions.add(e); exceptions = initList(exceptions);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10K bytes - Viewed (0)