Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 52 of 52 for getLocalRepository (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Retrieves the local repository associated with this session.
         *
         * @return the local repository instance
         */
        @Nonnull
        LocalRepository getLocalRepository();
    
        /**
         * Retrieves a list of remote repositories associated with this session.
         *
         * @return a list of remote repositories
         */
        @Nonnull
    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)
  2. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            DefaultRepositorySystemSession repoSession = MavenTestHelper.createSession(repositorySystem, container);
            LocalRepository localRepo =
                    new LocalRepository(config.getLocalRepository().getBasedir());
            repoSession.setLocalRepositoryManager(
                    new SimpleLocalRepositoryManagerFactory().newInstance(repoSession, localRepo));
            config.setRepositorySession(repoSession);
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 94.8K bytes
    - Click Count (0)
Back to Top