Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for localRepositoryPath (0.07 sec)

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

                throws MavenExecutionRequestPopulationException {
            String localRepositoryPath = null;
    
            if (request.getLocalRepositoryPath() != null) {
                localRepositoryPath = request.getLocalRepositoryPath().getAbsolutePath();
            }
    
            if (localRepositoryPath == null || localRepositoryPath.isEmpty()) {
                String path = request.getUserProperties().getProperty(Constants.MAVEN_USER_CONF);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        }
    
        @Override
        public MavenExecutionRequest setLocalRepositoryPath(File localRepository) {
            localRepositoryPath = localRepository;
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setLocalRepositoryPath(String localRepository) {
            localRepositoryPath = (localRepository != null) ? new File(localRepository) : null;
    
            return this;
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/resident/DefaultResidentMavenInvoker.java

                shadow.lookup = lookup;
                shadow.settingsBuilder = settingsBuilder;
    
                shadow.interactive = interactive;
                shadow.localRepositoryPath = localRepositoryPath;
                shadow.installationSettingsPath = installationSettingsPath;
                shadow.projectSettingsPath = projectSettingsPath;
                shadow.userSettingsPath = userSettingsPath;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            context.effectiveSettings = settingsResult.getEffectiveSettings();
            context.interactive = mayDisableInteractiveMode(context, context.effectiveSettings.isInteractiveMode());
            context.localRepositoryPath = localRepositoryPath(context);
    
            if (!settingsResult.getProblems().isEmpty()) {
                context.logger.warn("");
                context.logger.warn("Some problems were encountered while building the effective settings");
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
  5. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            performProfileActivation(commandLine, request.getProfileActivation());
    
            final String localRepositoryPath = determineLocalRepositoryPath(request);
            if (localRepositoryPath != null) {
                request.setLocalRepositoryPath(localRepositoryPath);
            }
    
            //
            // Builder, concurrency and parallelism
            //
    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