- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for ArtifactsSetWithResult (0.15 seconds)
-
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"); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 8.3K bytes - Click Count (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;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.8K bytes - Click Count (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(Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 15.6K bytes - Click Count (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;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.2K bytes - Click Count (0)