Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for localRepository (0.07 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactResolverTest.java

            Artifact g = createLocalArtifact("g", "1.0");
            createLocalArtifact("h", "1.0");
            artifactResolver.resolveTransitively(
                    Collections.singleton(g), projectArtifact, remoteRepositories(), localRepository(), null);
    
            // we want to see all top-level thread groups
            ThreadGroup tg = Thread.currentThread().getThreadGroup();
            while (tg.getParent() == null) {
                tg = tg.getParent();
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

    import org.eclipse.aether.graph.DependencyFilter;
    import org.eclipse.aether.graph.DependencyNode;
    import org.eclipse.aether.graph.Exclusion;
    import org.eclipse.aether.repository.Authentication;
    import org.eclipse.aether.repository.LocalRepository;
    import org.eclipse.aether.repository.LocalRepositoryManager;
    import org.eclipse.aether.repository.Proxy;
    import org.eclipse.aether.repository.RemoteRepository;
    import org.eclipse.aether.repository.RepositoryPolicy;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 04 18:33:16 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

     * <tr><td><code>session</code></td>           <td></td>               <td>the actual {@link MavenSession}</td></tr>
     * <tr><td><code>session.*</code></td>         <td>(since Maven 3)</td><td></td></tr>
     * <tr><td><code>localRepository</code></td>   <td></td>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.graph.DefaultDependencyNode;
    import org.eclipse.aether.internal.impl.SimpleLocalRepositoryManagerFactory;
    import org.eclipse.aether.repository.LocalRepository;
    import org.eclipse.aether.repository.NoLocalRepositoryManagerException;
    import org.junit.jupiter.api.Test;
    
    import static org.codehaus.plexus.testing.PlexusExtension.getTestFile;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 19:31:34 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

        Plugin getPluginDefinitionForPrefix(String prefix, MavenSession session, MavenProject project);
    
        PluginDescriptor verifyPlugin(
                Plugin plugin, MavenProject project, Settings settings, ArtifactRepository localRepository)
                throws ArtifactResolutionException, PluginVersionResolutionException, ArtifactNotFoundException,
                        InvalidVersionSpecificationException, InvalidPluginException, PluginManagerException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     *
     * <p>Key capabilities provided through the Session include:</p>
     * <ul>
     *   <li>Access to the current {@link org.apache.maven.api.Project}</li>
     *   <li>Access to the {@link org.apache.maven.api.LocalRepository} and {@link org.apache.maven.api.RemoteRepository} configurations</li>
     *   <li>Access to Maven services through {@link org.apache.maven.api.Session#getService(Class)}</li>
     *   <li>Build configuration and settings</li>
     * </ul>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:13:42 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

                    throws ArtifactMetadataRetrievalException {
                return retrieveAvailableVersions(artifact);
            }
    
            @Override
            public List<ArtifactVersion> retrieveAvailableVersionsFromDeploymentRepository(
                    Artifact artifact, ArtifactRepository localRepository, ArtifactRepository remoteRepository)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 43K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        String getGlobalChecksumPolicy();
    
        // Local repository
        MavenExecutionRequest setLocalRepositoryPath(String localRepository);
    
        MavenExecutionRequest setLocalRepositoryPath(File localRepository);
    
        File getLocalRepositoryPath();
    
        MavenExecutionRequest setLocalRepository(ArtifactRepository repository);
    
        ArtifactRepository getLocalRepository();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        ? request.getLocalRepository().getBasedirPath()
                        : null;
                if (basedir != null) {
                    LocalRepository localRepository = session.createLocalRepository(basedir);
                    session = InternalSession.from(session.withLocalRepository(localRepository));
                }
                this.session = session;
                this.modelBuilderSession = modelBuilder.newSession();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

     * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead
     */
    @Deprecated(since = "4.0.0")
    public interface ProjectBuildingRequest {
    
        ProjectBuildingRequest setLocalRepository(ArtifactRepository localRepository);
    
        ArtifactRepository getLocalRepository();
    
        ProjectBuildingRequest setRemoteRepositories(List<ArtifactRepository> remoteRepositories);
    
        List<ArtifactRepository> getRemoteRepositories();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top