- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 202 for repositories (0.09 seconds)
-
impl/maven-core/src/test/java/org/apache/maven/project/RepositoryLeakageTest.java
</parent> <artifactId>child1</artifactId> <repositories> <repository> <id>child1-repo</id> <url>https://child1.example.com/repo</url> </repository> </repositories> </project> """);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 9.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java
/** * Gets the remote repositories to use. * * @return The remote repositories to use, never {@code null}. */ List<RemoteRepository> getRepositories(); /** * Sets the remote repositories to use. Note: When creating a request from a project, be sure to use the * plugin repositories and not the regular project repositories. * * @param repositories The remote repositories to use.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java
public List<RemoteRepository> getRepositories() { return repositories; } @Override public DefaultPluginVersionRequest setRepositories(List<RemoteRepository> repositories) { if (repositories != null) { this.repositories = Collections.unmodifiableList(repositories); } else { this.repositories = Collections.emptyList(); } return this; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
@Override public List<ArtifactRepository> getEffectiveRepositories(List<ArtifactRepository> repositories) { if (repositories == null) { return null; } Map<String, List<ArtifactRepository>> reposByKey = new LinkedHashMap<>(); for (ArtifactRepository repository : repositories) { String key = repository.getId();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 31.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Creates a derived session using the given remote repositories. * * @param repositories the new list of remote repositories * @return the derived session * @throws NullPointerException if {@code repositories} is null */ @Nonnull Session withRemoteRepositories(@Nonnull List<RemoteRepository> repositories); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 36.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java
/** * The possible merge modes for combining remote repositories. */ enum RepositoryMerging { /** * The repositories declared in the POM have precedence over the repositories specified in the request. */ POM_DOMINANT, /** * The repositories specified in the request have precedence over the repositories declared in the POM. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 10:13:56 GMT 2025 - 7.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java
/** * Gets the remote repositories to use for the resolution. * * @return The remote repositories to use for the resolution, never {@code null}. */ @Override List<ArtifactRepository> getRemoteRepositories(); /** * Sets the remote repositories to use for the resolution. * * @param remoteRepositories The remote repositories to use for the resolution.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.9K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java
Artifact l = createRemoteArtifact("l", "1.0-SNAPSHOT"); deleteLocalArtifact(l); List<ArtifactRepository> repositories = new ArrayList<>(); repositories.add(remoteRepository()); repositories.add(badRemoteRepository()); artifactResolver.resolve(l, repositories, localRepository()); assertLocalArtifactPresent(l); } @Test
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 10:49:22 GMT 2025 - 10.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java
/** * Resolves the main artifact of the specified plugin. * * @param plugin The plugin for which to resolve the main artifact, must not be {@code null}. * @param repositories The plugin repositories to use for resolving the plugin's main artifact, must not be {@code * null}. * @param session The repository session to use for resolving the plugin's main artifact, must not be {@code null}.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java
*/ public interface ProjectBuildingHelper { /** * Creates the effective artifact repositories from the specified POM repositories. * * @param pomRepositories The POM repositories to create the artifact repositories from, must not be {@code null}. * @param externalRepositories The external (and already mirrored) repositories to merge into the result list, may * be {@code null}.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.7K bytes - Click Count (0)