Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CyclicDependencyException (0.25 sec)

  1. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/CyclicDependencyException.java

    import org.apache.maven.artifact.Artifact;
    
    /**
     * Indicates a cycle in the dependency graph.
     *
     */
    public class CyclicDependencyException extends ArtifactResolutionException {
        private Artifact artifact;
    
        public CyclicDependencyException(String message, Artifact artifact) {
            super(message, artifact);
            this.artifact = artifact;
        }
    
        public Artifact getArtifact() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java

        public MetadataResolutionResult addCircularDependencyException(CyclicDependencyException e) {
            circularDependencyExceptions = initList(circularDependencyExceptions);
    
            circularDependencyExceptions.add(e);
    
            exceptions = initList(exceptions);
    
            exceptions.add(e);
    
            return this;
        }
    
        public CyclicDependencyException getCircularDependencyException(int i) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

            return artifact.getDependencyConflictId();
        }
    
        public void addDependencies(
                Set<Artifact> artifacts, List<ArtifactRepository> remoteRepositories, ArtifactFilter filter)
                throws CyclicDependencyException, OverConstrainedVersionException {
            if (artifacts != null && !artifacts.isEmpty()) {
                children = new ArrayList<>(artifacts.size());
    
                for (Artifact a : artifacts) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top