Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ArtifactsSetWithResult (0.07 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/SetWithResolutionResult.java

    import org.apache.maven.project.artifact.ProjectArtifactsCache;
    
    public class SetWithResolutionResult extends AbstractSet<Artifact>
            implements ProjectArtifactsCache.ArtifactsSetWithResult {
        final DependencyResolutionResult result;
        final Set<Artifact> artifacts;
    
        public SetWithResolutionResult(DependencyResolutionResult result, Set<Artifact> artifacts) {
            this.result = result;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

     * prior notice.
     *
     */
    public interface ProjectArtifactsCache {
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        interface ArtifactsSetWithResult extends Set<Artifact> {
            DependencyResolutionResult getResult();
        }
    
        /**
         * CacheRecord
         */
        class CacheRecord {
    
            private final Set<Artifact> artifacts;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top