Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for getAbsoluteFile (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            this.localRepository = localRepository;
    
            if (localRepository != null) {
                setLocalRepositoryPath(new File(localRepository.getBasedir()).getAbsoluteFile());
            }
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setLocalRepositoryPath(File localRepository) {
            localRepositoryPath = localRepository;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                try {
                    cliRequest.multiModuleProjectDirectory = basedir.getCanonicalFile();
                } catch (IOException e) {
                    cliRequest.multiModuleProjectDirectory = basedir.getAbsoluteFile();
                }
            }
    
            // We need to locate the top level project which may be pointed at using
            // the -f/--file option.  However, the command line isn't parsed yet, so
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top