Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getBasedirPath (0.06 seconds)

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

  1. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

        String pathOfLocalRepositoryMetadata(ArtifactMetadata metadata, ArtifactRepository repository);
    
        String getUrl();
    
        void setUrl(String url);
    
        String getBasedir();
    
        default Path getBasedirPath() {
            return Paths.get(getBasedir());
        }
    
        String getProtocol();
    
        String getId();
    
        void setId(String id);
    
        ArtifactRepositoryPolicy getSnapshots();
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Feb 07 00:45:02 GMT 2025
    - 4.3K bytes
    - Click Count (1)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                InternalSession session = InternalSession.from(request.getRepositorySession());
                Path basedir = request.getLocalRepository() != null
                        ? request.getLocalRepository().getBasedirPath()
                        : null;
                if (basedir != null) {
                    LocalRepository localRepository = session.createLocalRepository(basedir);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 17:20:31 GMT 2025
    - 51.8K bytes
    - Click Count (0)
Back to Top