- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for WorkspaceRepository (0.07 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/WorkspaceRepository.java
* not for installation or deployment. This interface does not provide direct access * to artifacts; that functionality is handled by a {@code WorkspaceReader}. */ public interface WorkspaceRepository extends Repository { /** * {@return the type of the repository, i.e. "workspace"} */ @Nonnull @Override default String getType() { return "workspace"; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java
import org.apache.maven.impl.resolver.MavenWorkspaceReader; import org.eclipse.aether.artifact.Artifact; import org.eclipse.aether.repository.WorkspaceReader; import org.eclipse.aether.repository.WorkspaceRepository; import static java.util.Objects.requireNonNull; /** * A maven workspace reader that delegates to a chain of other readers, effectively aggregating their contents. * <p>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestMavenWorkspaceReader.java
static final String ARTIFACT_ID = "this.is.a.test"; static final String VERSION = "99.99"; private static final WorkspaceRepository WORKSPACE_REPOSITORY = new WorkspaceRepository(REPO_LAYOUT); @Override public WorkspaceRepository getRepository() { return WORKSPACE_REPOSITORY; } @Override public File findArtifact(Artifact artifact) { return null;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java
import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.LocalRepository; import org.eclipse.aether.repository.RemoteRepository; import org.eclipse.aether.repository.WorkspaceRepository; /** */ @Named @Singleton public class DefaultProjectArtifactsCache implements ProjectArtifactsCache { /** * CacheKey */ protected static class CacheKey implements Key {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/plugin/DefaultPluginDescriptorCache.java
import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.LocalRepository; import org.eclipse.aether.repository.RemoteRepository; import org.eclipse.aether.repository.WorkspaceRepository; /** * Caches raw plugin descriptors. A raw plugin descriptor is a descriptor that has just been extracted from the plugin
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java
import org.eclipse.aether.repository.WorkspaceRepository; /** */ @Named @Singleton public class DefaultPluginArtifactsCache implements PluginArtifactsCache { /** * CacheKey */ protected static class CacheKey implements Key { private final Plugin plugin; private final WorkspaceRepository workspace; private final LocalRepository localRepo;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java
import org.eclipse.aether.graph.DependencyFilter; import org.eclipse.aether.repository.LocalRepository; import org.eclipse.aether.repository.RemoteRepository; import org.eclipse.aether.repository.WorkspaceRepository; /** * Default PluginCache implementation. Assumes cached data does not change. */ @Named @Singleton public class DefaultPluginRealmCache implements PluginRealmCache, Disposable { /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.5K bytes - Viewed (0)