- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ArtifactsSetWithResult (0.07 sec)
-
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) -
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) -
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) -
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)