Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ArtifactsSetWithResult (0.11 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

                artifacts = setWithResolutionResult;
            } else if (projectArtifacts instanceof ArtifactsSetWithResult artifactsSetWithResult) {
                artifacts = new SetWithResolutionResult(artifactsSetWithResult.getResult(), projectArtifacts);
            } else {
                throw new IllegalArgumentException("projectArtifacts must implement ArtifactsSetWithResult");
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                    project, scopesToCollect, scopesToResolve, session, aggregating, projectArtifacts);
            if (resolvedArtifacts instanceof ProjectArtifactsCache.ArtifactsSetWithResult artifactsSetWithResult) {
                return artifactsSetWithResult.getResult();
            } else {
                throw new IllegalStateException();
            }
        }
    
        public Set<Artifact> resolveProjectArtifacts(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top